- Home
- MCP servers
- RSS Reader
RSS Reader
- javascript
2
GitHub Stars
javascript
Language
4 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": {
"kwp-lab-rss-reader-mcp": {
"command": "npx",
"args": [
"-y",
"rss-reader-mcp"
],
"env": {
"PORT": "8081",
"TRANSPORT": "stdio (default) or httpStream",
"MCP_SERVER_HOST": "localhost"
}
}
}
}The RSS Reader MCP server lets you subscribe to RSS feeds, fetch feed entries, and extract full article content formatted as Markdown. It enables you to interact with RSS data through MCP-capable clients, making it easy to integrate feed updates and article rendering into your workflows.
How to use
You can use this MCP server with MCP-capable clients to fetch recent feed entries from selected RSS sources and to extract full article content from URLs. Use a client to call the two available endpoints: one for retrieving RSS feed entries and another for extracting article content as Markdown. You can start by subscribing to feeds you care about and then request a list of the latest items, or provide an article URL to obtain a formatted Markdown version of the content.
How to install
Prerequisites you need before starting: Node.js installed on your system or a container runtime if you prefer using Docker.
Choose one of the supported deployment methods shown here and follow the steps exactly.
docker build -t rss-reader-mcp .
Additional sections
Configuration, security, and usage details are provided to help you run and manage the RSS Reader MCP server effectively.
Transport options allow you to run the server either as a local process or over HTTP streaming. Related environment variables are described below to customize behavior.
Examples show how to wire the server into a client configuration so you can start fetching feed entries or extracting article content without manual scripting.
Available tools
fetch_feed_entries
Fetch RSS feed entries from a specified URL with an optional limit to control how many items are returned.
fetch_article_content
Extract the full content of an article from a URL and format it as Markdown, including the title, content, source URL, and timestamp.