🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

feed-reader-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feed-reader-mcp

An MCP server that fetches and reads RSS/Atom feeds, so any MCP client (Claude, etc.) can pull the latest items from blogs, news sites, and release feeds.

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
31
-8.82%
Maintainers
1
Weekly downloads
 
Created
Source

feed-reader-mcp

An MCP server that fetches and reads RSS / Atom feeds, so any MCP client (Claude Desktop, Claude Code, etc.) can pull the latest items from blogs, news sites, and release feeds — and build digests.

Why

LLM clients can't reliably read RSS on their own. This server exposes two simple tools so an agent can stay current with the feeds you care about (release notes, news, blogs) without scraping.

Tools

ToolWhat it does
fetch_feedFetch one RSS/Atom feed → recent items (title, link, date, snippet).
fetch_manyFetch several feeds → one merged, date-sorted list (a digest).

Install

npm install -g feed-reader-mcp

Use with Claude Desktop / Claude Code

Add to your MCP config (claude_desktop_config.json or .mcp.json):

{
  "mcpServers": {
    "feed-reader": {
      "command": "npx",
      "args": ["-y", "feed-reader-mcp"]
    }
  }
}

Then ask: "Use feed-reader to get the latest 5 items from https://hnrss.org/frontpage" or "Build a digest from these three feeds…".

Develop

npm install
npm run build
npm start          # runs over stdio

License

MIT © tono628develop

Keywords

mcp

FAQs

Package last updated on 26 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts