streamable-httpMITupdated 0y ago
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.
Was kannst du mit kwp lab rss reader mcp machen?
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 | 中文
🚀 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: https://feeds.bbci.co.uk/news/rss.xml
-
Full article content extraction
Please extract the full content of this article and format it as Markdown: https://example.com/news/article-title
🔧 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). - MCP_SERVER_HOST: 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).
- Works with Claude Desktop via the
- 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.
- Set the environment variable
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/
Installation
kwp lab rss reader mcp zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add --transport http kwp-lab-rss-reader-mcp https://server.smithery.ai/@kwp-lab/rss-reader-mcp/mcpcodex mcp add kwp-lab-rss-reader-mcp --url https://server.smithery.ai/@kwp-lab/rss-reader-mcp/mcp{
"mcpServers": {
"kwp-lab-rss-reader-mcp": {
"url": "https://server.smithery.ai/@kwp-lab/rss-reader-mcp/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"kwp-lab-rss-reader-mcp": {
"type": "http",
"url": "https://server.smithery.ai/@kwp-lab/rss-reader-mcp/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"kwp-lab-rss-reader-mcp": {
"url": "https://server.smithery.ai/@kwp-lab/rss-reader-mcp/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"kwp-lab-rss-reader-mcp": {
"serverUrl": "https://server.smithery.ai/@kwp-lab/rss-reader-mcp/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Unvollständig
- Dokumentation21/25
- Pflege9/25
- Vertrauen13/20
- Funktionsumfang0/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 355 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 1.0.0Aktuell | 10. Sept. 2025 |