loading…
Search for a command to run...
loading…
RSS feeds MCP server with 8 tools — fetch, filter, search, and manage RSS feeds by category or source. Zero config, no API keys required.
RSS feeds MCP server with 8 tools — fetch, filter, search, and manage RSS feeds by category or source. Zero config, no API keys required.
npm version License: MIT rss-feeds-mcp MCP server
A Model Context Protocol (MCP) server that lets AI assistants like Claude Desktop, Cursor, Windsurf, and any MCP client fetch, filter, and search RSS feeds. Monitor blogs, track industry news, and research content — all through natural language.
Zero configuration. Install and start reading RSS feeds immediately. No API keys, no authentication.
Ask Claude questions like:
npx rss-feeds-mcp
Or install globally:
npm install -g rss-feeds-mcp
Ships with default feeds — customize your own at ~/.rss-mcp/feeds.json.
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"rss": {
"command": "npx",
"args": ["-y", "rss-feeds-mcp"]
}
}
}
Restart Claude Desktop. Done — RSS feeds are now available in Claude.
Works with any MCP-compatible client including Cursor, Windsurf, VS Code + Cline, and more:
npx rss-feeds-mcp
| Tool | Description |
|---|---|
list_categories |
List all available feed categories (SEO, content, social, email, analytics, CRM, news) |
list_feeds |
List all configured RSS feeds with their categories |
add_feed |
Add a new RSS feed with name, URL, and category |
remove_feed |
Remove a feed by name |
fetch_blogs |
Fetch latest posts from all feeds with date range and limit |
fetch_by_category |
Fetch posts filtered by category |
fetch_from_source |
Fetch posts from a specific named source |
search_blogs |
Search across all feeds by keyword (matches title and summary) |
User prompt: "Add the HubSpot blog RSS feed and show me the latest 5 posts"
Expected behavior:
add_feed with name "hubspot", URL "https://blog.hubspot.com/rss", and category "content"fetch_from_source with name "hubspot" and limit 5User prompt: "Search all my feeds for articles about 'content marketing' from the last month"
Expected behavior:
search_blogs with keyword "content marketing" and range "30d"User prompt: "Show me the latest SEO articles from this week"
Expected behavior:
fetch_by_category with category "seo" and range "1w"Feeds are stored at ~/.rss-mcp/feeds.json. On first run, a default config is created with sample feeds. Manage feeds dynamically using the add_feed and remove_feed tools, or edit the file directly:
{
"categories": ["seo", "content", "social", "email", "analytics", "crm", "news"],
"feeds": [
{ "name": "hubspot", "url": "https://blog.hubspot.com/rss", "category": "content" },
{ "name": "techcrunch", "url": "https://techcrunch.com/feed/", "category": "news" },
{ "name": "searchengineland", "url": "https://searchengineland.com/feed", "category": "seo" }
]
}
See PRIVACY.md for our complete privacy policy.
TL;DR: This extension runs locally on your machine. All feed fetching happens directly from your machine to public RSS endpoints. No data is collected, stored, or transmitted to any third party by this MCP server. No API keys or authentication required.
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"lionkiii-rss-feeds-mcp": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.