1. Conduid
  2. Developer Tools
  3. Feed MCP
MCP server · Developer Tools

Feed MCP

MCP Server for RSS, Atom, and JSON Feeds

Unclaimed MIT last commit 6 months ago devtools
64Good

Scored yesterday · breakdown

About Feed MCP

Feed MCP is an MCP server published by richardwooding in the Developer Tools category: mCP Server for RSS, Atom, and JSON Feeds. It has been installed 0 times through Conduid.

The repository has 14 stars and 2 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx feed-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Feed MCP

Powered by Claude · Grounded in docs

I know everything about Feed MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v2.6.13v2.6.13 · 27 Aug 2026Changelog f89f19936121ce8a7dfc943b9df8834cef6d108f chore(deps): bump the minor-and-patch group with 2 updates (#171) 17da4b43752b791a6b2d456a4551ca43f9584f2b chore: apply go fix (Go 1.27 modernizers)…
v2.6.12v2.6.12 · 22 Aug 2026Changelog ac48df6f45542f110a2c58f91d512bc247fab7e1 chore(deps): bump the minor-and-patch group with 3 updates (#170) c993829778f42fb6c77867ddf6e3407f49e4b616 fix: make FuzzLoadFeedURLsFromOPML hermetic; cap OPML read size (#169)
v2.6.11v2.6.11 · 12 Aug 2026Changelog 4de7c4fa9a6c3f0f7050b40cc0d3f0d699d6d685 chore(deps): bump the minor-and-patch group with 2 updates (#167) 4adfa4f4bdbb49fbe2eb8f873bb232910d66e925 chore(site): sync gloam assets to 43b9fc8ccd66aa58f25adc74c6b83ab0f8647782 (#166)
v2.6.10v2.6.10 · 28 Jul 2026Changelog 5806e30b57309f82288590477640c30d1d756614 chore(deps): bump github.com/eko/gocache/lib/v4 (#165)
v2.6.9v2.6.9 · 23 Jul 2026Changelog 869a0dc96f0deec810ce3ad0493da9fc7a8b41c6 chore(deps): bump actions/setup-go from 6.5.0 to 7.0.0 (#164) 4d3f74946f3677fe906074651f2fba155a1ed59c chore(deps): bump github.com/alecthomas/kong (#163)…

README

feed-mcp

Go Coverage Go Report Card MCP Badge

Bring RSS feeds to Claude Desktop — Read news, blogs, and updates directly in your AI conversations.

What is feed-mcp?

feed-mcp is a Model Context Protocol (MCP) server that lets Claude Desktop read RSS, Atom, and JSON feeds. Think of it as a bridge that connects your favorite websites' RSS feeds to Claude, so you can ask questions about the latest articles, get summaries, and stay updated—all from within your Claude chat.

Why use it?

  • 📰 Stay informed — Read the latest news and blog posts without leaving Claude
  • 🎯 Get summaries — Ask Claude to summarize multiple articles across different feeds
  • 🔍 Deep dive — Research topics by querying specific feeds or articles
  • Save time — No need to open multiple websites to stay current

Quick Start

Step 1: Add to Claude Desktop

Open your Claude Desktop configuration file and add feed-mcp with your favorite feeds:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "feed-mcp": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run",
        "https://techcrunch.com/feed/",
        "https://www.theverge.com/rss/index.xml"
      ]
    }
  }
}

Step 2: Restart Claude Desktop

Restart Claude Desktop to load the new configuration.

Step 3: Start chatting!

Try asking Claude:

  • "What are the latest tech news headlines?"
  • "Summarize the top 5 articles from my feeds"
  • "Are there any articles about AI today?"

Popular Feed Collections

Technology News

{
  "mcpServers": {
    "tech-news": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run",
        "https://techcrunch.com/feed/",
        "https://www.theverge.com/rss/index.xml",
        "https://www.wired.com/feed/rss",
        "https://feeds.arstechnica.com/arstechnica/index"
      ]
    }
  }
}

Security & Privacy

{
  "mcpServers": {
    "security-news": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run",
        "https://krebsonsecurity.com/feed/",
        "https://www.schneier.com/blog/atom.xml",
        "https://www.bleepingcomputer.com/feed/"
      ]
    }
  }
}

Web Development

{
  "mcpServers": {
    "webdev-news": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run",
        "https://css-tricks.com/feed/",
        "https://www.smashingmagazine.com/feed/",
        "https://hacks.mozilla.org/feed/"
      ]
    }
  }
}

Podcasts

{
  "mcpServers": {
    "podcasts": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run",
        "https://feeds.npr.org/510282/podcast.xml",
        "https://feeds.npr.org/381444908/podcast.xml"
      ]
    }
  }
}

Try asking Claude:

  • "What are the latest podcast episodes?"
  • "Summarize the most recent episode from NPR Politics"
  • "Are there any episodes about climate change this week?"

Using Your RSS Reader Feeds

Already have feeds in Feedly, Inoreader, or another RSS reader? Export them as OPML and use with feed-mcp:

{
  "mcpServers": {
    "my-feeds": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-v", "/path/to/your/feeds.opml:/feeds.opml:ro",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run", "--opml", "/feeds.opml"
      ]
    }
  }
}

How to export OPML:

  • Feedly: Settings → OPML → Export
  • Inoreader: Preferences → Folders and Tags → Export OPML
  • NewsBlur: Account → Import/Export → Export Stories
  • The Old Reader: Settings → Import/Export → Export

How Claude Reads Feeds

When you ask Claude about your feeds, here's what happens:

  1. Browse first — Claude gets a list of article titles and metadata
  2. Read selectively — Claude only fetches full content for articles you ask about
  3. Smart caching — Articles are cached to avoid re-fetching

This two-pass approach keeps responses fast and prevents overwhelming your conversation.

Example Usage

You: "What's new in tech today?"

Claude will:

  1. Browse your tech feed titles
  2. Summarize the latest headlines
  3. Ask if you want details on specific articles

You: "Tell me more about the first article"

Claude will:

  1. Fetch the full content of that article
  2. Provide a detailed summary or answer your questions

Features

  • 🌐 Multiple formats — RSS, Atom, and JSON feeds
  • 📱 Import from readers — OPML support for easy migration
  • 💾 Smart caching — Efficient feed retrieval with automatic updates
  • Fast & reliable — Built-in rate limiting and error handling
  • 🔒 Secure — URL validation and private IP blocking
  • 🐳 Easy deployment — Docker and Podman support

Advanced Features

For power users, feed-mcp includes:

  • Dynamic feed management — Add/remove feeds at runtime
  • MCP Resources — Advanced filtering and real-time subscriptions
  • Intelligent prompts — Analyze trends, monitor keywords, generate reports
  • Circuit breakers — Automatic handling of failing feeds
  • Custom configuration — Rate limiting, retries, connection pooling

See docs/ADVANCED.md for details.

Alternative Installation Methods

Go Install

If you have Go installed:

go install github.com/richardwooding/feed-mcp@latest
feed-mcp run https://techcrunch.com/feed/

Then configure Claude Desktop:

{
  "mcpServers": {
    "feed-mcp": {
      "command": "feed-mcp",
      "args": ["run", "https://techcrunch.com/feed/"]
    }
  }
}

Podman

Prefer Podman over Docker? Just replace docker with podman:

{
  "mcpServers": {
    "feed-mcp": {
      "command": "podman",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run",
        "https://techcrunch.com/feed/"
      ]
    }
  }
}

Troubleshooting

"Claude hit the maximum length for this conversation"

If you see this error:

  • You're fetching too many large articles at once
  • Try asking Claude to browse titles first, then read specific articles
  • The server automatically limits content to prevent this

Feed not updating

Feeds are cached for 10 minutes by default. If you need fresh data:

  • Wait a few minutes and try again
  • Restart Claude Desktop to clear the cache

Private/localhost feeds

By default, localhost and private IP feeds are blocked for security. To enable:

{
  "mcpServers": {
    "feed-mcp": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "ghcr.io/richardwooding/feed-mcp:latest",
        "run", "--allow-private-ips",
        "http://localhost:8080/feed.xml"
      ]
    }
  }
}

Documentation

  • ADVANCED.md — Dynamic feed management, MCP Resources, intelligent prompts
  • ARCHITECTURE.md — Technical details, architecture, development guide
  • CLAUDE.md — Instructions for Claude Code when working with this codebase

Contributing

Contributions are welcome! See the architecture docs for technical details and development guidelines.

License

MIT License — See LICENSE for details.

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Feed MCP

How do I install Feed MCP?

Run npx feed-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Feed MCP safe to use with an AI agent?

Its trust score is 64 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Feed MCP still maintained?

Yes — the latest release is v2.6.13 (27 Aug 2026), and the last commit was 6 months ago. The repository has 14 stars and 0 open issues.