kwp-lab/rss-reader-mcp
MCP server for RSS feed aggregation and article content extraction
An MCP (Model Context Protocol) server for RSS feed aggregation and article content extraction. You can use it to subscribe to RSS feeds and get article lists, or extract the full content of an article from a URL and format it as Markdown.
English | δΈζ
[](https://www.npmjs.com/package/rss-reader-mcp) [](LICENSE) [](https://github.com/kwp-lab/rss-reader-mcp/actions/workflows/publish.yml) [](https://smithery.ai/server/@kwp-lab/rss-reader-mcp)
You can use this MCP server in MCP-capable clients such as Claude Desktop and CherryStudio.
For Claude Desktop, add the following configuration under the "mcpServers" section in your claude_desktop_config.json file:
{
"mcpServers": {
"rss-reader": {
"command": "npx",
"args": [
"-y",
"rss-reader-mcp"
]
}
}
}> Can you fetch the latest 5 headlines from the BBC News RSS feed? > URL: <https://feeds.bbci.co.uk/news/rss.xml>
> Please extract the full content of this article and format it as Markdown: > <https://example.com/news/article-title>
fetch_feed_entriesFetch RSS entries from a specified URL
Parameters:
url (required string): RSS feed URLlimit (optional number): Maximum number of entries to return (default 10, max 100)Returns: A JSON object containing feed metadata and a list of entries (including title, link, publication date, and summary)
fetch_article_contentExt
Loading reviews...