CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Kwp Lab Rss Reader Mcp

kwp-lab/rss-reader-mcp
52 toolsauthHTTPregistry active
Summary

This server wraps RSS feed parsing and article extraction into two straightforward tools. Use fetch_feed_entries to pull the latest headlines from any RSS feed URL with configurable limits, or fetch_article_content to grab the full text of an article and convert it to Markdown. It handles the feed parsing and content extraction so you can ask Claude to monitor news sources, aggregate updates, or pull complete articles without hitting paywalls or dealing with HTML. Supports both stdio for local Claude Desktop setups and HTTP streaming for containerized deployments. Handy when you want to stay on top of multiple feeds or need clean article text for summarization and analysis without switching contexts.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

2 tools
fetch_feed_entriesFetch RSS feed entries from a given URL2 params

Fetch RSS feed entries from a given URL

Parameters* required
urlstring
limitinteger
fetch_article_contentFetch and extract article content from a URL, formatted as Markdown1 params

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

Parameters* required
urlstring

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 license build status smithery badge

🚀 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/
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Search & Web Crawling
Registryactive
TransportHTTP
AuthRequired
UpdatedSep 10, 2025
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3