Skip to main content
Glama
README.md
# rss-mcp

Local MCP server for RSS and Atom feeds. Universal, no cloud middle.

Part of the [honest-mcp family](https://github.com/bartosz-kuc?tab=repositories) of small, auditable, local-first MCP servers.

## Why

Every AI assistant should be able to read a feed. RSS is the last honest content protocol on the open web — no login, no algorithm, no tracker. This server hands feed data to your AI in the same shape as any other structured tool, so you can ask questions like "what did HN's frontpage look like this morning?" without scraping.

## Features

Three tools:

- `fetch_feed` — full feed + N most recent entries
- `search_entries` — feed entries filtered by keyword in title/summary
- `list_feed_metadata` — quick dashboard view over many feeds at once (no full entry payload)

Handles RSS 1.0, RSS 2.0, and Atom — whatever `feedparser` handles.

## Requirements

- Python 3.10+

## Setup

```bash
git clone https://github.com/bartosz-kuc/honest-rss-mcp.git
cd rss-mcp
python3 -m venv venv
./venv/bin/pip install -r requirements.txt
```

Register with Claude Code:

```bash
claude mcp add rss /absolute/path/to/venv/bin/python /absolute/path/to/server.py
```

Claude Desktop `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "rss": {
      "command": "/absolute/path/to/venv/bin/python",
      "args": ["/absolute/path/to/server.py"]
    }
  }
}
```

## Example usage

> "What's on Hacker News right now?"

`fetch_feed(url="https://news.ycombinator.com/rss", limit=10)`

> "Anything about MCP in the Anthropic blog feed?"

`search_entries(url="https://www.anthropic.com/rss.xml", query="MCP")`

> "Give me a summary line for each of these five feeds."

`list_feed_metadata(urls=["...", "...", ...])`

## Data flow

```
Your AI client
     ↕  MCP stdio
This server (Python, on your machine)
     ↕  HTTPS
Feed URL
```

Nothing else. No aggregator server, no analytics.

## Author

**Bartosz Kuć** — Warsaw-based developer, JDG owner running [skanfirmy.pl](https://skanfirmy.pl).

- GitHub: https://github.com/bartosz-kuc

- Email: firma@bartosza.pl

## Consulting

Available for consulting on Polish tax and business integrations (KSeF, GUS/NFZ/GIOŚ APIs, mBank data), MCP server design, and AI-assisted tooling for JDGs and small teams. See **[skanfirmy.pl/uslugi](https://skanfirmy.pl/uslugi)** for productized packages (audit 3k PLN, setup 8-15k PLN, retainer 2-4k PLN/mo), or reach out via email.

## License

MIT — see [LICENSE](LICENSE).

## Related

- Part of the honest-mcp family — see the [family index](https://github.com/bartosz-kuc?tab=repositories).

TDQS

A4/5.0

Scored across 3 tools

Disambiguation4/5

The three tools have distinct primary outputs—full feed entries, filtered search results, and metadata-only—so agents can usually tell them apart. There is minor overlap because fetch_feed also returns metadata, but the descriptions are clear enough to prevent confusion.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern: fetch_feed, search_entries, list_feed_metadata. The verbs accurately reflect each tool's behavior.

Tool Count5/5

Three tools is well-scoped for a read-only RSS/Atom utility. Each tool covers a distinct need: full retrieval, keyword search, and lightweight metadata lookup.

Completeness5/5

For the domain of public feed retrieval, the surface is complete: fetching entries, searching by keyword, and listing metadata are all covered. There are no obvious dead ends or missing core operations.

Maintenance

ActivityMaintained
ResponsivenessNo issues