Freshrss Server
FreeNot checkedMCP server for interacting with FreshRSS via the Google Reader API, enabling subscription management, content reading, and item operations.
About
MCP server for interacting with FreshRSS via the Google Reader API, enabling subscription management, content reading, and item operations.
README
An MCP (Model Context Protocol) server implementation to interact with your FreshRSS server, using the Google Reader API.
Features
- Full FreshRSS Integration: Access all major Google Reader API features
- Simple Authentication: Direct FreshRSS API authentication
- Subscription Management: Subscribe, unsubscribe, import/export OPML
- Content Reading: Fetch reading lists, starred items, specific feeds, and categories
- Item Operations: Mark as read/unread, star/unstar, add/remove labels
- Category Management: List, rename, and delete categories
- Persistent Storage: SQLite database for auth tokens and sync state at
~/.freshrss/ - Session Management: Login/logout with complete data clearing
- Claude Desktop Ready: Works seamlessly with Claude Desktop as a local MCP server
Installation
# Clone the repository
git clone https://github.com/nitinthewiz/freshrss-mcp-server.git
cd freshrss-mcp-server
# Install in editable mode with all dependencies
pip install -e .
# For development (includes testing and linting tools)
pip install -e ".[dev]"
Configuration
Claude Desktop
Add to your Claude Desktop config at ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"freshrss": {
"command": "python3",
"args": ["-m", "src.main"],
"cwd": "/path/to/freshrss-mcp-server",
"env": {
"PYTHONPATH": "/path/to/freshrss-mcp-server"
}
}
}
}
Environment Variables (Optional)
All configuration is optional with sensible defaults:
# Server Transport ("stdio" or "streamable-http")
MCP_TRANSPORT=stdio
MCP_HOST=127.0.0.1 # For HTTP transport
MCP_PORT=8000 # For HTTP transport
# Database (default: ~/.freshrss/freshrss.db)
DATABASE_PATH=/path/to/custom/freshrss.db
# Logging
DEBUG=false
LOG_LEVEL=INFO
# HTTP Client Settings
HTTP_TIMEOUT=30
HTTP_MAX_RETRIES=3
HTTP_RETRY_DELAY=1.0
HTTP_BACKOFF_FACTOR=2.0
# Cache Settings
CACHE_SUBSCRIPTION_TTL=300
CACHE_UNREAD_COUNT_TTL=30
Usage
Running the Server
stdio Mode (Default - for Claude Desktop)
# Using Python directly
python -m src.main
# Using FastMCP CLI
fastmcp run src/main.py:mcp
Streamable HTTP Mode (for HTTP-based MCP clients)
This mode supports the MCP specification 2025-03-26 Streamable HTTP transport, enabling HTTP-based MCP clients to connect.
# Using environment variables
MCP_TRANSPORT=streamable-http python -m src.main
# With custom host/port
MCP_TRANSPORT=streamable-http MCP_HOST=0.0.0.0 MCP_PORT=8080 python -m src.main
# Using FastMCP CLI
fastmcp run src/main.py:mcp --transport streamable-http --port 8000
The server will be available at http://127.0.0.1:8000/mcp (or your configured host:port).
Development Mode (with MCP Inspector)
# Opens web UI for testing tools interactively
fastmcp dev src/main.py:mcp
Available MCP Tools
Authentication
login_to_freshrss(server_url, username, password)- Login and store credentials- Supports flexible URL formats (base URL, with /i/, or /api/greader.php)
logout_from_freshrss()- Logout and clear all dataget_freshrss_user_info()- Get current user infocheck_freshrss_session()- Validate session
Subscriptions
list_freshrss_subscriptions()- List all feedssubscribe_to_feed(feed_url, title?, category?)- Subscribe to a feedunsubscribe_from_feed(feed_id)- Unsubscribe from a feedquick_subscribe_to_feed(feed_url)- Quick subscribe with auto-discoveryexport_freshrss_subscriptions()- Export OPMLimport_freshrss_subscriptions(opml_content)- Import OPMLedit_feed_subscription(feed_id, ...)- Edit feed properties
Content
get_reading_list(count?, since_timestamp?, continuation?)- Get unread articlesget_starred_articles(count?, ...)- Get starred itemsget_feed_articles(feed_id, count?, ...)- Get specific feed articlesget_category_articles(category_name, count?, ...)- Get category articles
Item Operations
mark_articles_as_read(item_ids)- Mark as readmark_articles_as_unread(item_ids)- Mark as unreadstar_articles(item_ids)- Star articlesunstar_articles(item_ids)- Unstar articlesadd_label_to_articles(item_ids, label)- Add labelremove_label_from_articles(item_ids, label)- Remove labelmark_all_as_read_in_stream(stream_id, timestamp?)- Mark all as read
Categories
list_categories()- List all categoriesget_unread_counts()- Get unread counts for all feedsrename_category(old_name, new_name)- Rename categorydelete_category(category_name)- Delete category
Development
Running Tests
# Run all tests
pytest
# Run with coverage
pytest --cov=src --cov-report=html
# Run specific test suite
pytest tests/unit/
pytest tests/integration/
Code Quality
# Format code
black src/
# Lint
ruff check src/
# Type checking
mypy src/
Architecture
The server uses a layered architecture:
- MCP Tools Layer: FastMCP tool definitions (26 tools)
- Service Layer: Manager classes for each API domain (Auth, Subscription, Stream, Item, Tag)
- HTTP Client Layer: GReader API client with retry logic and exponential backoff
- Storage Layer: SQLite for auth tokens and sync state
Security
- HTTPS-only connections to FreshRSS servers
- Auth tokens persisted in SQLite (consider SQLCipher for encryption)
- No plaintext password storage
- Input validation on all user inputs
- Parameterized SQL queries
License
MIT License - see LICENSE file for details.
Contributing
Contributions welcome! Please ensure:
- Tests pass (
pytest) - Code is formatted (
black src/) - No linting errors (
ruff check src/) - Type checking passes (
mypy src/)
Support
For issues, questions, or feature requests, please open an issue on GitHub.
Installing Freshrss Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/nitinthewiz/freshrss-mcp-serverFAQ
Is Freshrss Server MCP free?
Yes, Freshrss Server MCP is free — one-click install via Unyly at no cost.
Does Freshrss Server need an API key?
No, Freshrss Server runs without API keys or environment variables.
Is Freshrss Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Freshrss Server in Claude Desktop, Claude Code or Cursor?
Open Freshrss Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Freshrss Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
