- Home
- MCP servers
- RSS Feed
RSS Feed
- javascript
0
GitHub Stars
javascript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"elchika-inc-rss-feed-mcp-server": {
"command": "npx",
"args": [
"rss-feed-mcp-server"
],
"env": {
"RSS_FEED_MCP_HOST": "localhost"
}
}
}
}The RSS Feed MCP Server lets Claude access and process RSS and Atom feeds through the Model Context Protocol, enabling you to register, manage, and retrieve feeds from a centralized MCP endpoint.
How to use
To use this MCP server with your MCP client, start by running the server locally and then configure your client to connect to it. You can register feeds, list your registered feeds, fetch and parse feeds, and remove feeds as needed. Administrative actions such as adding a new feed are done through the available commands exposed by the server, and all feed data can be retrieved in a single request per your configured limits.
You can fetch a feed by providing the feed URL and optional parameters to limit the number of items and whether to include full article content. You can also list all registered feeds or add and remove feeds to tailor what Claude can access.
How to install
# Prerequisites
- Node.js and npm or npx available on your system
# Install and run the server
npx rss-feed-mcp-server
Optionally run in debug mode to troubleshoot connections and feed parsing behavior by adding the --debug flag.
Additional notes
The server stores its configuration in the user’s config directory at ~/.config/rss-feed-mcp/config.json. You can customize defaults such as the number of items to fetch per request, timeouts, and the user agent string.
Available tools
fetch_rss_feed
Fetch and parse RSS/Atom feeds using URL, with optional limits and content inclusion.
list_feeds
List all feeds currently registered in the server.
add_feed
Register a new RSS/Atom feed by name and URL.
remove_feed
Remove a registered feed by its feed ID.