rss-mcp
Allows fetching, searching, and listing metadata from RSS and Atom feeds. Provides tools to retrieve full feed entries, filter by keyword, and get a dashboard overview of multiple feeds.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rss-mcpWhat's on Hacker News right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
rss-mcp
Local MCP server for RSS and Atom feeds. Universal, no cloud middle.
Part of the honest-mcp family of small, auditable, local-first MCP servers.
Why
Every AI assistant should be able to read a feed. RSS is the last honest content protocol on the open web — no login, no algorithm, no tracker. This server hands feed data to your AI in the same shape as any other structured tool, so you can ask questions like "what did HN's frontpage look like this morning?" without scraping.
Related MCP server: ttrss-mcp
Features
Three tools:
fetch_feed— full feed + N most recent entriessearch_entries— feed entries filtered by keyword in title/summarylist_feed_metadata— quick dashboard view over many feeds at once (no full entry payload)
Handles RSS 1.0, RSS 2.0, and Atom — whatever feedparser handles.
Requirements
Python 3.10+
Setup
git clone https://github.com/bartosz-kuc/rss-mcp.git
cd rss-mcp
python3 -m venv venv
./venv/bin/pip install -r requirements.txtRegister with Claude Code:
claude mcp add rss /absolute/path/to/venv/bin/python /absolute/path/to/server.pyClaude Desktop claude_desktop_config.json:
{
"mcpServers": {
"rss": {
"command": "/absolute/path/to/venv/bin/python",
"args": ["/absolute/path/to/server.py"]
}
}
}Example usage
"What's on Hacker News right now?"
fetch_feed(url="https://news.ycombinator.com/rss", limit=10)
"Anything about MCP in the Anthropic blog feed?"
search_entries(url="https://www.anthropic.com/rss.xml", query="MCP")
"Give me a summary line for each of these five feeds."
list_feed_metadata(urls=["...", "...", ...])
Data flow
Your AI client
↕ MCP stdio
This server (Python, on your machine)
↕ HTTPS
Feed URLNothing else. No aggregator server, no analytics.
Author
Bartosz Kuć — Warsaw-based developer, JDG owner running skanfirmy.pl.
GitHub: https://github.com/bartosz-kuc
Email: firma@bartosza.pl
Consulting
Available for consulting on Polish tax and business integrations (KSeF, GUS/NFZ/GIOŚ APIs, mBank data), MCP server design, and AI-assisted tooling for JDGs and small teams. See skanfirmy.pl/uslugi for productized packages (audit 3k PLN, setup 8-15k PLN, retainer 2-4k PLN/mo), or reach out via email.
License
MIT — see LICENSE.
Related
Part of the honest-mcp family — see the family index.
Available Tools
3 toolsfetch_feedA
Fetch and parse an RSS or Atom feed. Returns feed metadata (title, subtitle, language) and a list of entries (title, link, published date, author, summary, tags). Use limit to cap how many entries you get back — feeds can be huge. Works with any publicly-accessible feed URL.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Feed URL (RSS 1.0, RSS 2.0, or Atom) | |
| limit | No | Maximum number of entries to return (default 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It discloses the return shape, the fact that feeds can be huge and limit caps entries, and that only publicly-accessible URLs are supported. It doesn't discuss error behavior for invalid/non-feed URLs, timeouts, or whether entries are sorted/paginated, which would make it stronger.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with the main action, followed by return fields, limit guidance, and URL scope. Every sentence earns its place and there is no repetition of schema details or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema, the description explains both returned sections (metadata and entries) and gives practical limit guidance, so an agent can call it correctly. It lacks explicit failure-mode handling and sibling differentiation, but for a simple fetch-and-parse tool it is close to complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents the url format and limit's default/meaning. The description adds only the rationale that feeds can be huge, which is useful but doesn't significantly expand on the schema. This keeps it at the baseline for schema-covered parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches and parses RSS/Atom feeds and enumerates the returned metadata and entry fields, so an agent knows exactly what it does. It doesn't explicitly contrast itself with the sibling tools search_entries and list_feed_metadata, though the full-feed return implies the distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it: when you want entries plus metadata from a public feed, and it gives practical limit guidance. However, it doesn't name alternatives or state when not to use it, such as when only metadata is needed (list_feed_metadata) or when a search over fields is required (search_entries).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_feed_metadataA
Fetch metadata for one or more feeds without loading all entries — title, subtitle, entry count, last update time. Useful for building a dashboard of feeds you follow.
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | List of feed URLs |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral burden and does well: it discloses that the operation fetches metadata only, does not load all entries, and indicates the returned fields. It does not explicitly claim read-only behavior, but 'Fetch metadata' clearly implies a non-mutating operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that front-loads the core action and purpose, then adds useful specifics. No filler or redundant phrasing is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description provides sufficient context: what the tool does, what it returns, and a representative use case. It does not cover error behavior or URL validity, but those are not critical for selecting and invoking this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds a small semantic detail ('one or more feeds') that is not enforced by the schema, but it does not significantly deepen understanding of the urls parameter beyond what the schema already says.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Fetch metadata') and resource ('feeds'), and clearly distinguishes from loading all entries. It also lists the exact metadata fields returned, making the tool's purpose unambiguous and distinct from siblings like fetch_feed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for use: building a dashboard of followed feeds and explicitly notes this tool avoids loading all entries. It implies the alternative is fetching full feed content, though it does not name siblings or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_entriesA
Fetch a feed and return only entries whose title or summary contain a keyword (case-insensitive). Useful when you want the AI to check a feed for specific topics without wading through everything.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Feed URL | |
| limit | No | Maximum matches to return | |
| query | Yes | Keyword to match against title or summary (case-insensitive substring) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden. It discloses the core read-and-filter behavior and the case-insensitive matching, but lacks additional behavioral details such as whether the entire feed is fetched and filtered locally, pagination behavior, or potential performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with two focused sentences: the first states the primary function and the second gives a practical use case. There is no fluff, though the opening 'Fetch a feed' could be slightly more specific about returning entries.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given three simple parameters, no output schema, and no annotations, the description provides a solid but not fully complete picture. It explains when to use the tool and the core behavior, but does not describe return value structure or pagination, and it does not explicitly position this tool relative to fetch_feed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the parameters are already well documented in the input schema. The description does not add significant parameter-level detail beyond the schema; it mainly reinforces the filtering concept already covered by the 'query' description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action (fetch a feed and return filtered entries) and clearly identifies the matching behavior (title or summary contains a keyword, case-insensitive). It implicitly differentiates from siblings by focusing on filtered search rather than full feed fetching or metadata, but does not explicitly name the siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The second sentence provides clear context for when to use this tool: checking a feed for specific topics without needing to process everything. It does not explicitly state when not to use it or mention alternatives like fetch_feed, so it misses the full when/when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
fetch_feed - First observed
list_feed_metadata - First observed
search_entries
TDQS
The three tools have distinct primary outputs—full feed entries, filtered search results, and metadata-only—so agents can usually tell them apart. There is minor overlap because fetch_feed also returns metadata, but the descriptions are clear enough to prevent confusion.
All tools follow a consistent verb_noun snake_case pattern: fetch_feed, search_entries, list_feed_metadata. The verbs accurately reflect each tool's behavior.
Three tools is well-scoped for a read-only RSS/Atom utility. Each tool covers a distinct need: full retrieval, keyword search, and lightweight metadata lookup.
For the domain of public feed retrieval, the surface is complete: fetching entries, searching by keyword, and listing metadata are all covered. There are no obvious dead ends or missing core operations.
Maintenance
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Official MCP server for subfeed.app — the cloud for agents. 15+ tools for AI agents to register, build, and deploy other agents. Zero human required. Start here: subfeed.app/skill.md
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that fetches RSS feeds and shares them with LLMs, allowing AI assistants to access and present the latest news and articles from configured feeds.19-
- AlicenseAqualityDmaintenanceAn MCP server that enables AI assistants to manage Tiny Tiny RSS feeds, including reading articles, updating statuses, and searching content. It also provides tools for feed management and generating automated daily reports.15443MIT
- AlicenseAqualityAmaintenanceAn MCP server for managing and querying RSS/news feeds, enabling real-time fetching, searching, and retrieval of feed items.5251MIT
- AlicenseAqualityAmaintenanceSecure MCP server for RSS/Atom feed reading with SQLite backend. Enables feed management, entry search, and OPML import/export.17AGPL 3.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bartosz-kuc/rss-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server