freshrss-mcp
Provides tools for managing RSS feeds through a FreshRSS instance, including listing feeds, reading articles, marking read/unread, starring, and adding feeds.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@freshrss-mcpshow unread articles from my feeds"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
freshrss-mcp
An MCP server that puts a small, well-typed toolset in front of a FreshRSS instance, so an AI assistant (Claude, etc.) can read and manage your feeds: list subscriptions, browse unread/starred articles, read full content, mark read/unread, star, add feeds, and mark whole streams read.
It talks to FreshRSS over its built-in Google Reader-compatible API
(/api/greader.php), so it works with any standard FreshRSS install — no
plugins or schema changes required.
The server speaks MCP over streamable HTTP on a single port and gates the
endpoint with a static bearer token. /healthz is open for liveness/readiness.
Tools
Tool | Description |
| Authenticated user + instance URL — a quick connectivity/credentials check. |
| Subscribed feeds with category and unread count. |
| Categories/folders with total unread count. |
| Articles (newest first), filterable by |
| Full HTML content of a single article by id. |
| Toggle read state for one or more article ids. |
| Toggle the star/favorite for one or more article ids. |
| Mark an entire stream (all, a feed, or a category) read, optionally only items older than N seconds. |
| Subscribe to a new feed URL, optionally filed under a category. |
Article ids returned by list_articles/get_article are the values you pass
back to the mutating tools.
Related MCP server: MCP RSS
Configuration
All configuration is via environment variables (see .env.example):
Variable | Required | Description |
| yes | Base URL of your FreshRSS instance, without |
| yes | FreshRSS username. |
| yes | The per-user API password (see below) — not the web login password. |
| recommended | Bearer token clients must send. If unset, the MCP endpoint is unauthenticated — only acceptable for purely local use. |
| no | Listen port (default |
| no | Per-request timeout to FreshRSS, seconds (default |
Enabling the FreshRSS API
In FreshRSS, go to Settings → Authentication and enable "Allow API access" (the global toggle for the GReader/Fever APIs).
Go to Settings → Profile and set an API password. This is a dedicated password used only by API clients; it is separate from your login password. Put it in
FRESHRSS_API_PASSWORD.
Running locally
cp .env.example .env # then edit .env with your instance details
pip install -r requirements.txt
set -a && . ./.env && set +a
python server.py
# MCP endpoint: http://localhost:8080/mcp
# Health check: http://localhost:8080/healthzOr with Docker:
docker build -t freshrss-mcp .
docker run --rm -p 8080:8080 --env-file .env freshrss-mcpConnecting a client
Add it as a streamable-HTTP MCP server. With the Claude Code CLI:
claude mcp add --transport http freshrss https://your-host/mcp \
--header "Authorization: Bearer $MCP_TOKEN"Any MCP client that supports HTTP transports works the same way: point it at
https://your-host/mcp and send Authorization: Bearer <MCP_TOKEN>.
Security notes
No secrets live in this repo. Credentials are supplied only at runtime via environment variables.
.envis gitignored; only.env.example(placeholders) is committed.Always set
MCP_TOKENfor any networked deployment — without it the endpoint is open to anyone who can reach it.The server stores no data on disk; every call proxies to FreshRSS. The ClientLogin token is held only in memory and refreshed automatically on 401.
Prefer giving the MCP its own FreshRSS user/API password so access can be revoked independently of your main account.
How it works
server.py is a single FastMCP
streamable-HTTP app. A small GReader client handles ClientLogin auth (token
cached in memory, auto-refreshed on 401) and the handful of GReader endpoints
the tools need. A Starlette middleware enforces the bearer token on everything
except /healthz.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RobertDWhite/freshrss-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server