FreshRSS Agent
Allows interaction with FreshRSS, a self-hosted RSS reader, via its Google Reader compatible API. Provides tools for managing subscriptions, categories, feeds, and items, including reading streams, marking as read, starring, and unsubscribing.
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 Agentlist my subscriptions and unread counts"
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
CLI or API | MCP | Agent
Version: 1.0.1
Documentation — Installation, deployment, usage across the API, CLI, and MCP interfaces, the integrated A2A agent server, and guidance for provisioning the backing platform are maintained in the official documentation.
Related MCP server: FreshRSS MCP Server
Table of Contents
Overview
FreshRSS MCP Server + A2A Agent
A connector for the self-hosted FreshRSS RSS reader, wrapping its Google Reader compatible API (GReader). It exposes two action-routed MCP tool domains:
freshrss_reader—stream_contents(feed items + continuation),item_contents,unread_count.freshrss_subscriptions—list,subscribe,unsubscribe,label,categories,mark_read,star.
This repository is actively maintained - Contributions are welcome!
Key Features
Consolidated Action-Routed MCP Tools: Two togglable tool domains group every GReader operation, minimizing token overhead and tool bloat in LLM contexts.
Google Reader Compatible: Wraps the FreshRSS GReader API —
ClientLoginauth, transparent re-authentication on401, and automatic write-token handling.Enterprise-Grade Security: OIDC token delegation (RFC 8693), Eunomia policy enforcement, and per-instance credential resolution.
Integrated A2A Agent: Built-in Pydantic AI agent server alongside the MCP server.
Native Telemetry & Tracing: Out-of-the-box OpenTelemetry exports and Langfuse tracing.
MCP
Install the slim
[mcp]extra. All MCP examples below installfreshrss-agent[mcp]— the MCP-server extra that pulls only the FastMCP / FastAPI tooling (agent-utilities[mcp]). It deliberately excludes the heavy agent runtime (the epistemic-graph engine,pydantic-ai,dspy,llama-index,tree-sitter), souvx/container installs are dramatically smaller and faster. Use the full[agent]extra only when you need the integrated Pydantic AI agent (see Installation).
Available MCP Tools
Auto-generated from the live MCP server — do not edit by hand.
Condensed action-routed tools (default — MCP_TOOL_MODE=condensed)
MCP Tool | Toggle Env Var | Description |
|
| Read FreshRSS streams via the Google Reader API. CONCEPT:FR-OS.identity.frss |
|
| Curate FreshRSS feeds, categories and item tags. CONCEPT:FR-OS.governance.frss |
Verbose 1:1 API-mapped tools (MCP_TOOL_MODE=verbose or both)
MCP Tool | Toggle Env Var | Description |
|
| List categories / tags ( |
|
| Fetch full contents for specific item ids (GReader |
|
| Add a category label to an existing feed subscription. |
|
| Mark one or more items as read. |
|
| Star or unstar an item. |
|
| Fetch items for a stream. |
|
| Subscribe to a feed, optionally setting its title and category. |
|
| List all feed subscriptions. |
|
| Return unread counts per stream. |
|
| Unsubscribe from a feed. |
2 action-routed tool(s) (default) · 10 verbose 1:1 tool(s). Each is enabled unless its <DOMAIN>TOOL toggle is set false; MCP_TOOL_MODE selects the surface (condensed default · verbose 1:1 · both). Auto-generated — do not edit.
Detailed tool schemas, parameter shapes, and validation constraints are preserved in docs/usage.md.
Environment Variables
Package environment variables
Variable | Example | Description |
|
| |
|
| |
|
| options: stdio, streamable-http, sse |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| options: none, embedded, remote |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
Inherited agent-utilities variables (apply to every connector)
Variable | Example | Description |
|
| Tool surface: |
| — | Comma-separated tool allow-list |
| — | Comma-separated tool deny-list |
| — | Comma-separated tag allow-list |
| — | Comma-separated tag deny-list |
| — | Outbound MCP auth ( |
| — | OIDC client id (service-account auth) |
| — | OIDC client secret (service-account auth) |
|
| Verbose logging |
|
| Unbuffered stdout (recommended in containers) |
|
| URL of the MCP server the agent connects to |
|
| LLM provider for the agent |
|
| Model id for the agent |
|
| Serve the AG-UI web interface |
17 package + 14 inherited variable(s). Auto-generated from .env.example + the shared agent-utilities set — do not edit.
Every variable the server reads. A copy-paste template lives in .env.example.
Connection & Credentials
Variable | Description | Default |
| Base URL of the FreshRSS instance (e.g. |
|
| FreshRSS username (GReader | — |
| FreshRSS API password (Settings → Authentication) | — |
| Whether to verify TLS certificates |
|
MCP server / transport
Variable | Description | Default |
|
|
|
| Bind host (HTTP transports) |
|
| Bind port (HTTP transports) |
|
| Tool surface: |
|
Telemetry & governance
Variable | Description | Default |
| Enable OpenTelemetry / Langfuse export |
|
| Authorization mode: |
|
| Embedded policy file |
|
| Remote Eunomia server URL | — |
Tool toggles — each action-routed tool domain can be disabled via its toggle env var
(set to false): READERTOOL, SUBSCRIPTIONSTOOL (see the
Available MCP Tools table above).
MCP Configuration Examples
Install the slim
[mcp]extra. All examples installfreshrss-agent[mcp]— the MCP-server extra that pulls only the FastMCP / FastAPI tooling (agent-utilities[mcp]). It deliberately excludes the heavy agent runtime (pydantic-ai, the epistemic-graph engine,dspy,llama-index), souvx/ container installs are far smaller. Use the full[agent]extra only when you need the integrated Pydantic AI agent.
stdio Transport (local IDEs — Cursor, Claude Desktop, VS Code)
{
"mcpServers": {
"freshrss-mcp": {
"command": "uvx",
"args": [
"--from",
"freshrss-agent[mcp]",
"freshrss-mcp"
],
"env": {
"MCP_TOOL_MODE": "condensed",
"FRESHRSS_API_PASSWORD": "your_api_password_here",
"FRESHRSS_URL": "http://localhost:8080",
"FRESHRSS_USER": "admin",
"READERTOOL": "True",
"SUBSCRIPTIONSTOOL": "True"
}
}
}
}Streamable-HTTP Transport (networked / production)
{
"mcpServers": {
"freshrss-mcp": {
"command": "uvx",
"args": [
"--from",
"freshrss-agent[mcp]",
"freshrss-mcp",
"--transport",
"streamable-http",
"--port",
"8000"
],
"env": {
"TRANSPORT": "streamable-http",
"HOST": "0.0.0.0",
"PORT": "8000",
"MCP_TOOL_MODE": "condensed",
"FRESHRSS_API_PASSWORD": "your_api_password_here",
"FRESHRSS_URL": "http://localhost:8080",
"FRESHRSS_USER": "admin",
"READERTOOL": "True",
"SUBSCRIPTIONSTOOL": "True"
}
}
}
}Alternatively, connect to a pre-deployed Streamable-HTTP instance by url:
{
"mcpServers": {
"freshrss-mcp": {
"url": "http://localhost:8000/freshrss-mcp/mcp"
}
}
}Deploying the Streamable-HTTP server via Docker:
docker run -d \
--name freshrss-mcp-mcp \
-p 8000:8000 \
-e TRANSPORT=streamable-http \
-e HOST=0.0.0.0 \
-e PORT=8000 \
-e MCP_TOOL_MODE=condensed \
-e FRESHRSS_API_PASSWORD=your_api_password_here \
-e FRESHRSS_URL=http://localhost:8080 \
-e FRESHRSS_USER=admin \
-e READERTOOL=True \
-e SUBSCRIPTIONSTOOL=True \
knucklessg1/freshrss-agent:mcpAuto-generated from the code-read env surface (MCP_TOOL_MODE + package vars) — do not edit.
Additional Deployment Options
freshrss-agent can also run as a local container (Docker / Podman / uv) or be
consumed from a remote deployment. The
Deployment guide has full,
copy-paste mcp_config.json for all four transports — stdio, streamable-http,
local container / uv, and remote URL:
Local container / uv — launch the server from
mcp_config.jsonviauvx,docker run, orpodman run, or point at a local streamable-http container byurl.Remote URL — connect to a server deployed behind Caddy at
http://freshrss-mcp.arpa/mcpusing the"url"key.
Usage
Once configured, an LLM (or a direct caller) invokes a tool domain with an action
and a JSON params_json payload. Examples:
// Fetch the 50 most recent unread items, newest first
{
"tool": "freshrss_reader",
"action": "stream_contents",
"params_json": "{\"count\": 50, \"order\": \"n\"}"
}
// Subscribe to a feed and file it under a category
{
"tool": "freshrss_subscriptions",
"action": "subscribe",
"params_json": "{\"feed_url\": \"http://example.com/rss\", \"category\": \"News\"}"
}
// Mark items as read
{
"tool": "freshrss_subscriptions",
"action": "mark_read",
"params_json": "{\"item_ids\": [\"tag:google.com,2005:reader/item/0001\"]}"
}Invoking a tool with an unknown or omitted action returns the discovery payload
listing every valid action for that domain.
Installation
Pick the extra that matches what you want to run:
Extra | Installs | Use when |
| Slim MCP server only ( | You only run the MCP server (smallest install / image) |
| Full agent runtime ( | You run the integrated agent |
| Everything ( | Development / both surfaces |
# MCP server only (recommended for tool hosting — slim deps)
uv pip install "freshrss-agent[mcp]"
# Full agent runtime (Pydantic AI + epistemic-graph engine)
uv pip install "freshrss-agent[agent]"
# Everything (development)
uv pip install "freshrss-agent[all]" # or: python -m pip install "freshrss-agent[all]"After installation two console scripts are available:
freshrss-mcp # run the MCP server
freshrss-agent # run the A2A agent serverContainer images (:mcp vs :agent)
One multi-stage docker/Dockerfile builds two right-sized images, selected by --target:
Image tag | Build target | Contents | Entrypoint |
|
|
|
|
|
|
|
|
docker build --target mcp -t knucklessg1/freshrss-agent:mcp docker/ # slim MCP server
docker build --target agent -t knucklessg1/freshrss-agent:latest docker/ # full agentdocker/mcp.compose.yml runs the slim :mcp server; docker/agent.compose.yml runs the
agent (:latest) with a co-located :mcp sidecar.
Knowledge-graph database (epistemic-graph)
The full agent ([agent] / :latest) embeds the epistemic-graph engine (pulled in
transitively via agent-utilities[agent]). For production — or to share one knowledge graph
across multiple agents — run epistemic-graph as its own database container and point the
agent at it instead of embedding it. Deployment recipes (single-node + Raft HA), connection
config, and the full database architecture (with diagrams) are documented in the
epistemic-graph deployment guide.
The slim [mcp] server does not require the database.
Documentation
Full installation, deployment, usage, and platform-provisioning guides live in the
docs/ directory and are published via mkdocs + GitHub Pages at the
official documentation site:
Overview · Installation · Usage · Deployment · Platform · Concepts
Deploy with agent-os-genesis
This package can be provisioned for you — skill-guided — by the agent-os-genesis
universal skill (its single-package deploy mode): it picks your install method, seeds
secrets to OpenBao/Vault (or .env), trusts your enterprise CA, registers the MCP
server, and verifies it — the same machinery that stands up the whole Agent OS, narrowed
to just this package. Ask your agent to "deploy freshrss-agent with agent-os-genesis".
Install mode | Command |
Bare-metal, prod (PyPI) |
|
Bare-metal, dev (editable) |
|
Container, prod | deploy |
Container, dev (editable) | deploy |
Secrets are read-existing + seeded via vault_sync — you are only prompted for what's missing.
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
- 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/Knuckles-Team/freshrss-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server