Price Per TokenPrice Per Token
RSS Reader

RSS Reader

by kwp-lab

GitHub 2 1,754 uses Remote
0

About

RSS Reader is an RSS feed aggregation and article content extraction tool. It enables subscription to RSS feeds and retrieval of article lists, plus extracts full article content from URLs and formats it as clean Markdown. Key features of RSS Reader: - Fetch latest entries from any RSS feed URL with configurable limits (up to 100 entries) - Extract full article content from any article URL and convert to Markdown format - Retrieve structured feed metadata including title, link, publication date, and summary - Two transport modes: stdio (default) for local clients and HTTP streaming for containerized deployments - Compatible with MCP-capable clients like Claude Desktop and CherryStudio

Tools 2

fetch_feed_entries

Fetch RSS feed entries from a given URL

fetch_article_content

Fetch and extract article content from a URL, formatted as Markdown

README

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 | δΈ­ζ–‡

[](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 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/
  • Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81