A Python-based RSS Digest Bot powered by the Model Context Protocol (MCP) that fetches items from your favorite tech blogs and news sites, and returns AI-generated summaries via Claude.
- Pulls the latest posts from:
- On-demand summaries driven by Claude (or any other LLM client)
- Easy to run under:
- STDIO (for direct stdin/stdout JSON-RPC)
- HTTP (via
mcp dev+ Inspector / Claude Desktop HTTP mode) - Uvicorn (expose as ASGI app)
- Minimal dependencies:
feedparser,mcp[cli],uvicorn
-
Clone this repo:
git clone https://github.com/padmapriyavj/rss-digest-bot.git cd rss-digest-bot
-
Create & activate a virtual environment:
python3 -m venv .venv source .venv/bin/activate
-
Install dependencies:
pip install mcp[cli] feedparser uvicorn
-
Running the app
uv run main.py
-
Restart Claude Desktop to view the tool added to it
Add or edit claude_desktop_config.json in:
~/Library/Application Support/Claude/claude_desktop_config.json
to include:
jsonc { "mcpServers": { "rss-digest-bot": { "command": "/full/path/to/your/project/.venv/bin/mcp", "args": ["run", "main.py"], "transport": "stdio" } } }
- Quit & relaunch Claude Desktop.
- Under Developer → rss-digest-bot, ensure it’s Enabled.
- In chat, click ⚙️ (Search & tools) → confirm rss-digest-bot appears → On.