freshrss-mcp
Integrates with FreshRSS, a self-hosted RSS and Atom feed aggregator, providing tools for reading and managing feeds, articles, categories, and labels, as well as subscribing to, updating, and unsubscribing from 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-mcplist my unread articles"
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
A Model Context Protocol server for FreshRSS, the self-hosted RSS and Atom feed aggregator.
It speaks the Google Reader compatible API that FreshRSS exposes at
/api/greader.php, and it hides that API's quirks behind tool arguments an
assistant can actually use: numeric feed ids, category and label names, ISO
dates and decimal article ids instead of user/-/state/com.google/β¦ stream
identifiers and hexadecimal item tags.
π Full documentation: freshrss-mcp.ni-c.de

Requirements
Node.js 22 or newer
A FreshRSS instance (developed against 1.29) with
the API enabled: Settings β Authentication β "Allow API access"
an API password set for the user: Settings β Profile β API management. This is a separate password from the web login.
Related MCP server: Conduit
Configuration
Variable | Required | Description |
| yes | Root URL of the instance, e.g. |
| yes | FreshRSS user name. |
| yes | The API password from the profile page, not the web login password. |
| no |
|
| no |
|
The server starts without credentials so its tools stay listable; every call then fails with these setup instructions.
Claude Code
claude mcp add freshrss -- npx -y @ni-c/freshrss-mcpClaude Desktop
{
"mcpServers": {
"freshrss": {
"command": "npx",
"args": ["-y", "@ni-c/freshrss-mcp"],
"env": {
"FRESHRSS_URL": "https://rss.example.com",
"FRESHRSS_USER": "alice",
"FRESHRSS_API_PASSWORD": "β¦"
}
}
}
}Codex
[mcp_servers.freshrss]
command = "npx"
args = ["-y", "@ni-c/freshrss-mcp"]
env = { FRESHRSS_URL = "https://rss.example.com", FRESHRSS_USER = "alice", FRESHRSS_API_PASSWORD = "β¦" }Tools
Reading
Tool | Description |
| The authenticated account β a quick credential check. |
| Every subscription with its category and unread count. |
| Categories (folders of feeds) and user labels (tags on articles). |
| Total and per-feed/category unread counts, sorted. |
| Articles of a feed, category, label or built-in stream, with excerpts or bounded full text. |
| Full text of specific articles by id. |
| Ids only β the cheap way to collect a set for |
| All subscriptions as an OPML document. |
Writing
Not registered when FRESHRSS_READ_ONLY=true.
Tool | Description | Confirmation |
| Set read state, star and labels on specific articles. | β |
| Mark a whole feed, category, label or stream as read. | yes |
| Subscribe to a feed or website URL. | β |
| Rename a feed or move it to another category. | β |
| Delete a feed and all of its stored articles. | yes |
| Rename a category or a user label. | β |
| Delete a category or a user label. | yes |
| Subscribe to every feed in an OPML document. | yes |
No search
FreshRSS does not offer full-text search over its API β the Google Reader
endpoints filter by stream, read state and date only. list_articles therefore
has no query parameter; narrow the result with feed_id/category and
since/until and filter the returned articles yourself.
Safety
Article text is untrusted input. Everything this server returns from FreshRSS was written by a third party on the internet, so responses that carry article text, titles or feed names are explicitly marked as data, never as instructions.
Destructive tools are two-step. They return a single-use confirmation token bound to the exact target; the second call has to carry it. A plain boolean could be set on the very first call, or be talked into it by text hidden in a feed. The confirmation messages deliberately never quote titles or names coming from the API.
Response budgets. FreshRSS returns up to 500 000 characters of HTML per article. Article text is converted to plain text, capped per article and against a per-response budget, and is opt-in in listings.
Credentials are read once, removed from
process.envafterwards and never written to disk. Requests never follow redirects, which would resend the authorization header to another host, and relaxed TLS validation is scoped to this connection instead of the whole process.Feed URLs are redacted. FreshRSS stores HTTP-auth feeds as
https://user:password@host/feed. The userinfo part is stripped before a feed URL reaches a tool result or the OPML export, solist_feedscannot print the password of a paid or private feed into the transcript.subscribe_feedrefuses internal targets. FreshRSS fetches the URL server-side, which makes the tool an SSRF primitive reachable from text inside an article. Loopback and link-local addresses β including cloud metadata endpoints β are rejected. Private LAN addresses stay allowed, because self-hosted setups legitimately subscribe to feeds on their own network.import_opmlrefuses a<!DOCTYPE>. No XML is parsed in this process, but the document is handed to FreshRSS, where a document type declaration is the carrier for entity-expansion and external-entity attacks. OPML never needs one.FRESHRSS_READ_ONLY=truedoes not register the write tools at all rather than refusing them at call time.
Which tools are gated by a confirmation token: mark_all_as_read,
unsubscribe_feed, delete_category_or_label and import_opml. mark_articles
is deliberately not gated β the caller names each of at most 100 articles
explicitly and every field can be set back β but it is declared destructive, so a
client may still prompt for it.
Container
docker run --rm -i \
-e FRESHRSS_URL=https://rss.example.com \
-e FRESHRSS_USER=alice \
-e FRESHRSS_API_PASSWORD=... \
ghcr.io/ni-c/freshrss-mcp:latestThe image is published for linux/amd64 and linux/arm64 with an SBOM and build
provenance. It runs as the unprivileged node user and carries no npm, so the
only thing in it is Node, the runtime dependencies and dist/.
Development
npm install
npm run lint && npm run build && npm test
npm run test:coverageSee CONTRIBUTING.md for a throwaway FreshRSS to develop against. The full documentation lives at freshrss-mcp.ni-c.de.
Releasing
Move the
[Unreleased]entries in CHANGELOG.md under the new version and bumpversioninpackage.json.npm run lint && npm run build && npm run test:coverage.Commit, then tag:
git tag -s vX.Y.Z -m vX.Y.Z && git push origin main vX.Y.Z.
The tag triggers release.yml, which verifies the tag matches package.json,
publishes to npm via Trusted Publishing
with provenance (no token involved), creates the GitHub release from the CHANGELOG
section, and publishes the entry to the
MCP Registry. If only the registry
step fails, fix it on main and re-run mcp-registry.yml by hand β never re-run
the tagged job, which would check out the old tree.
License
MIT
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server for RSS feed aggregation and article content extraction, allowing users to subscribe to feeds and extract full article content as Markdown.21915MIT
- Flicense-qualityDmaintenanceA self-hosted RSS reader MCP server that manages RSS subscriptions and fetches live feed content, deployable on AWS.
- Alicense-qualityAmaintenanceMCP server for FreshRSS RSS reader enabling feed reading, subscription management, and item actions via the Google Reader compatible API.MIT
- AlicenseBqualityDmaintenanceAn MCP server that provides RSS feed tools for Claude Desktop, enabling fetching and parsing RSS feeds with configurable feeds and blocklists.6MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personalβ¦
MCP server for accessing curated awesome list documentation
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ni-c/freshrss-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server