Install
$ agentstack add mcp-kwp-lab-rss-reader-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v1.0.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v1.0.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
RSS Reader MCP
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 | [中文](./README_zh.md)
[](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)
🚀 Quick Start
You can use this MCP server in MCP-capable clients such as Claude Desktop and CherryStudio.
Claude Desktop
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"
]
}
}
}
Usage Examples
- Basic RSS feed fetching
> Can you fetch the latest 5 headlines from the BBC News RSS feed? > URL:
- Full article content extraction
> Please extract the full content of this article and format it as Markdown: >
🔧 Tools Reference
fetch_feed_entries
Fetch 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_content
Extract article content from a URL and format it as Markdown
Parameters:
url(required string): Article URL
Returns: A JSON object containing the title, Markdown content, source URL, and timestamp
⚙️ Transport & Environment Variables
This server supports two transport modes:
- stdio (default): Communicates via standard input/output. Suitable for clients that run a local process, such as Claude Desktop.
- httpStream: Communicates over HTTP streaming. Suitable for clients that support HTTP(S) transport or for containerized deployments.
Available environment variables:
- TRANSPORT: Select the transport mode, either
stdio(default) orhttpStream. - PORT: When
TRANSPORT=httpStream, the listening port (default8081). - MCPSERVERHOST: When
TRANSPORT=httpStream, the listening address (defaultlocalhost). In Docker, set this to0.0.0.0to expose the port externally.
How to switch transport modes:
- Using stdio (no extra setup, default):
- Works with Claude Desktop via the
command + argsconfiguration (see example above). - Using httpStream:
- Set the environment variable
TRANSPORT=httpStreamand specifyPORT(defaults to 8081 if not set). - When running in a container, also set
MCP_SERVER_HOST=0.0.0.0and map the port. - The Dockerfile in this repository already includes related environment variable settings.
Docker Deployment
You can also run this MCP server in a Docker container. First, build the image in the project root:
docker build -t rss-reader-mcp .
Using CherryStudio as an example, the following configuration shows how to run this server over HTTP:
{
"mcpServers": {
"rss-reader-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-p",
"8081:8081",
"-e",
"PORT=8081",
"rss-reader-mcp"
]
}
}
}
Some RSS Feeds for Testing
- BBC News:
https://feeds.bbci.co.uk/news/rss.xml - TechCrunch:
https://techcrunch.com/feed/ - Hacker News:
https://hnrss.org/frontpage - MIT Technology Review:
https://www.technologyreview.com/feed/
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kwp-lab
- Source: kwp-lab/rss-reader-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v1.0.0 Imported from the upstream source.