rss-feed-mcp
Provides keyless news search through Google News RSS (fused with Bing News), returning ranked, deduplicated stories with publishers and original URLs.
Fetches and normalizes RSS, Atom, RDF, and JSON Feed items into clean JSON, discovers feed URLs for sites, and filters by date for polling agents.
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-feed-mcpwhat's new on the Rust blog this week?"
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 and news feeds for agents
RSS, Atom and JSON feeds for agents: find a site's feed, read items as JSON, keyless news search. Remote MCP server over Streamable HTTP at
https://rss-feed.dsh.sh/mcp. Free, no API key. Tools:feed_items,feed_find,news_search. The tool list is fixed per version.
feed_items turns a feed URL, or just a site, into dated items with links, authors, categories, a short lead and bounded plain text: RSS 2.0, Atom, RDF and JSON Feed 1.1 are normalized to one shape, newest first, deduplicated, filtered by date, and fetched with conditional requests so a polling agent never hammers the publisher. feed_find runs the discovery ladder on a site (link tags and the Link header, feed-shaped anchors in the page, the common paths on the deepest prefix first, then a short table of well-known legacy feeds) and reports every rung it tried, so a miss is diagnosable. news_search answers the more common ask, what is the news about X, over Google News and Bing News RSS fused by reciprocal rank, with each story's publisher, which engines carried it, and the other URLs it appeared under. Free, keyless, no account; one fetch per rung, never a crawler.
Use when: The user wants what is new on a site or blog (feed_items with the site URL), needs a feed URL for a site that only shows HTML (feed_find), or asks what the news says about a topic (news_search). Use instead of scraping listing pages by hand.
Not for: Reading a single article's full body (use a page-to-markdown tool), managing subscriptions or read state (no accounts here), push notifications, or sites that publish no feed at all and are not covered by news search.
Quick install (Claude Code): claude mcp add --transport http rss-feed https://rss-feed.dsh.sh/mcp -s user
Docs
Full reference: every tool with its JSON input schema and an example
Install for any client: Claude Code, Cursor, VS Code, Claude Desktop, ChatGPT, Codex, Gemini CLI, Windsurf, Cline, Continue, Zed
OpenAPI twin: the same tools as plain HTTP POST endpoints
Registry server.json: machine-readable server record
Related MCP server: OmniWire-MCP
Upstreams
RSS 2.0 / Atom (RFC 4287) / JSON Feed 1.1 on the site itself: keyless
Google News RSS: keyless
Bing News RSS: keyless
Optional
Tools
Tool | Purpose | Effects |
| Read a feed as clean JSON items (id, title, url, published, authors, categories, a ≤200-char lead, bounded plain text), newest first, deduplicated, optionally since a date. url may be a feed URL or just a site: the discovery ladder runs and the result says how it resolved. Use for "what is new on X". | read-only, open-world, idempotent |
| Find the RSS/Atom/JSON feed(s) of a site: tags and the Link header, feed-shaped links in the page, the common paths on the deepest path prefix first, then a short table of well-known legacy feeds; every rung tried is returned. Use when you need a feed URL, want all of a site's feeds, or feed_items missed and you want to see why. | read-only, open-world, idempotent |
| Keyless news search: Google News RSS and Bing News RSS in parallel, fused by reciprocal rank, deduplicated by normalized URL, same-story variants grouped under also_on, each item with its publisher and which engines carried it (via: both is the strongest signal). Use for "what is the news about X"; use feed_items for one site's own posts. | read-only, open-world |
Every tool takes task_context: one sentence on what the user is trying to do. It is required.
feed_items
Read a feed as clean JSON items (id, title, url, published, authors, categories, a ≤200-char lead, bounded plain text), newest first, deduplicated, optionally since a date. url may be a feed URL or just a site: the discovery ladder runs and the result says how it resolved. Use for "what is new on X".
Input schema:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"url": {
"type": "string",
"minLength": 3,
"maxLength": 2000,
"description": "Feed URL, or a site/page URL to discover the feed for."
},
"limit": {
"default": 20,
"type": "integer",
"minimum": 1,
"maximum": 100
},
"since": {
"description": "ISO date/time; only items published or updated after it.",
"type": "string",
"maxLength": 40
},
"max_chars": {
"default": 30000,
"description": "Total budget for content_text across the returned items.",
"type": "integer",
"minimum": 1000,
"maximum": 200000
},
"task_context": {
"type": "string",
"minLength": 1,
"maxLength": 500,
"description": "One sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need."
}
},
"required": [
"url",
"limit",
"max_chars",
"task_context"
],
"additionalProperties": false
}Example arguments:
{
"url": "https://github.blog",
"limit": 5,
"task_context": "example: Read a feed as clean JSON items (id, title, url, published, "
}feed_find
Find the RSS/Atom/JSON feed(s) of a site: tags and the Link header, feed-shaped links in the page, the common paths on the deepest path prefix first, then a short table of well-known legacy feeds; every rung tried is returned. Use when you need a feed URL, want all of a site's feeds, or feed_items missed and you want to see why.
Input schema:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"site": {
"type": "string",
"minLength": 3,
"maxLength": 2000,
"description": "Site or page URL, e.g. \"arstechnica.com\" or \"https://vercel.com/blog\"."
},
"all": {
"default": false,
"description": "Keep going after the first feed to list every feed found (costs more fetches).",
"type": "boolean"
},
"task_context": {
"type": "string",
"minLength": 1,
"maxLength": 500,
"description": "One sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need."
}
},
"required": [
"site",
"all",
"task_context"
],
"additionalProperties": false
}Example arguments:
{
"site": "github.blog",
"task_context": "example: Find the RSS/Atom/JSON feed(s) of a site: <link rel=\"alterna"
}news_search
Keyless news search: Google News RSS and Bing News RSS in parallel, fused by reciprocal rank, deduplicated by normalized URL, same-story variants grouped under also_on, each item with its publisher and which engines carried it (via: both is the strongest signal). Use for "what is the news about X"; use feed_items for one site's own posts.
Input schema:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"limit": {
"default": 20,
"type": "integer",
"minimum": 1,
"maximum": 50
},
"when": {
"description": "Recency window (Google News honours it; Bing News has no such knob and is queried as-is).",
"type": "string",
"enum": [
"1h",
"1d",
"7d",
"30d"
]
},
"lang": {
"default": "en",
"description": "Google News hl language, e.g. en, de.",
"type": "string",
"minLength": 2,
"maxLength": 5
},
"region": {
"default": "US",
"description": "Google News gl region, e.g. US, GB.",
"type": "string",
"minLength": 2,
"maxLength": 2
},
"task_context": {
"type": "string",
"minLength": 1,
"maxLength": 500,
"description": "One sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need."
}
},
"required": [
"query",
"limit",
"lang",
"region",
"task_context"
],
"additionalProperties": false
}Example arguments:
{
"query": "Model Context Protocol",
"when": "7d",
"task_context": "example: Keyless news search: Google News RSS and Bing News RSS in pa"
}Install
Endpoint: https://rss-feed.dsh.sh/mcp (Streamable HTTP, MCP 2026-07-28 with 2025-era fallback). Authentication: none.
Claude Code
claude mcp add --transport http rss-feed https://rss-feed.dsh.sh/mcp -s userCursor / Cosmos (~/.cursor/mcp.json)
{
"mcpServers": {
"rss-feed": {
"url": "https://rss-feed.dsh.sh/mcp"
}
}
}VS Code / Copilot (user mcp.json)
{
"servers": {
"rss-feed": {
"type": "http",
"url": "https://rss-feed.dsh.sh/mcp"
}
}
}or code --add-mcp '{"name":"rss-feed","type":"http","url":"https://rss-feed.dsh.sh/mcp"}'
Claude Desktop / claude.ai
Settings → Connectors → Add custom connector → URL https://rss-feed.dsh.sh/mcp, Authentication: None.
Claude Desktop / claude.ai
Settings → Connectors → Add custom connector → URL https://rss-feed.dsh.sh/mcp, Authentication: None.
ChatGPT
Settings → Connectors → Add custom connector → https://rss-feed.dsh.sh/mcp. Desktop app / Codex share ~/.codex/config.toml:
[mcp_servers.rss-feed]
url = "https://rss-feed.dsh.sh/mcp"Codex CLI (~/.codex/config.toml)
[mcp_servers.rss-feed]
url = "https://rss-feed.dsh.sh/mcp"Gemini CLI
gemini mcp add --transport http rss-feed https://rss-feed.dsh.sh/mcp -s user(settings.json uses httpUrl, not url.)
Windsurf (~/.codeium/windsurf/mcp_config.json)
{
"mcpServers": {
"rss-feed": {
"serverUrl": "https://rss-feed.dsh.sh/mcp"
}
}
}Cline
{
"mcpServers": {
"rss-feed": {
"type": "streamableHttp",
"url": "https://rss-feed.dsh.sh/mcp"
}
}
}Continue (.continue/mcpServers/rss-feed.yaml)
name: rss-feed
mcpServers:
- name: rss-feed
type: streamable-http
url: https://rss-feed.dsh.sh/mcpZed (settings.json)
{
"context_servers": {
"rss-feed": {
"source": "custom",
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://rss-feed.dsh.sh/mcp"
]
}
}
}Any MCP client
Streamable HTTP endpoint: https://rss-feed.dsh.sh/mcp
{
"mcpServers": {
"rss-feed": {
"url": "https://rss-feed.dsh.sh/mcp"
}
}
}This page documents a server. It does not ask the reader to change any rules file, memory file, or host configuration.
Run it yourself
npm install && npm start # http://127.0.0.1:8080/mcp
docker compose up -d --build # same, in a container
node scripts/smoke.mjs http://127.0.0.1:8080 feed_items '{}'Built with the agie MCP factory kit (kit/): Streamable HTTP MCP plus agent-readable docs (llms.txt, server.json, install pages, a REST twin), all from one manifest (servers/rss-feed/mcp.factory.json). This repo is the server logic only; no telemetry is collected or sent by this code. MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
News for agents: 100k+ articles/day deduplicated into situations with timelines. Free, no key.
Real-time corroborated news events + 5-year archive, for agents. Free tier, no key.
The only News based AI MCP your agents will ever need — custom categories, global regions, and time-scoped results in one tool. We use multi-vector & sparse-hybrid search to search through thousands of articles across the world to find the exact news you're looking for.
Real-time news search across 500,000+ sources in 60+ languages with sentiment and entities.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables access to real-time news articles through search, topic headlines, full story coverage, and geo-based local news across multiple countries and languages using the Real Time News Data API.7MIT
- AlicenseCqualityCmaintenanceEnables AI models to fetch and aggregate news from RSS, Atom, JSON, and HTML feeds with fault-tolerant circuit breaker protection.4146MIT
- AlicenseAqualityDmaintenanceEnables AI agents to fetch and search news from multiple sources including RSS/Atom feeds, HackerNews, and GDELT global news intelligence without requiring an API key.113MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to fetch categorized news headlines and full article text from a multi-topic RSS aggregator, with no API keys required.13ISC
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/ux-xd/rss-feed-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server