Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Track and browse RSS feeds with ease. Fetch the latest entries from any feed URL and extract full…

README.md

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 | 中文

![npm version](https://www.npmjs.com/package/rss-reader-mcp) ![license](LICENSE) ![build status](https://github.com/kwp-lab/rss-reader-mcp/actions/workflows/publish.yml) ![smithery badge](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: <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 URL
  • limit (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) or httpStream.
  • PORT: When TRANSPORT=httpStream, the listening port (default 8081).
  • MCP_SERVER_HOST: When TRANSPORT=httpStream, the listening address (default localhost). In Docker, set this to 0.0.0.0 to expose the port externally.

How to switch transport modes:

  • Using stdio (no extra setup, default):
  • Works with Claude Desktop via the command + args configuration (see example above).
  • Using httpStream:
  • Set the environment variable TRANSPORT=httpStream and specify PORT (defaults to 8081 if not set).
  • When running in a container, also set MCP_SERVER_HOST=0.0.0.0 and 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/

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.