Provides tools to interact with a Feedbin account to list subscriptions, read articles, manage read/unread states, and star or unstar entries.
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., "@FeedbinMCPShow me my latest 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.
FeedbinMCP
This project was generated almost entirely by Claude Code, Anthropic's AI coding assistant, with only minor human editing.
An MCP server that connects Claude to your Feedbin RSS account. Read articles, manage read/unread state, and star or unstar entries — all from a Claude conversation.
Tools
Tool | Description |
| List all subscribed feeds |
| Get details for a specific feed |
| Paginated unread articles |
| Paginated read articles |
| Paginated starred articles |
| Entries with filters (feed, date, IDs) |
| Full content for a single entry |
| Flat list of all unread IDs |
| Flat list of all starred IDs |
| Mark one or more entries as read |
| Mark one or more entries as unread |
| Star (bookmark) entries |
| Remove star from entries |
| List all tags |
| Feed-to-tag mappings |
Requirements
Installation
# 1. Clone the repo
git clone https://github.com/hypermoose/FeedbinMCP.git
cd FeedbinMCP
# 2. Install the package and its dependencies
pip install -e .This installs a feedbin-mcp command and all required dependencies (mcp, httpx).
To confirm the install worked:
feedbin-mcp --helpAdding to Claude Code
Run this once, substituting your real Feedbin credentials:
claude mcp add feedbin \
--env FEEDBIN_EMAIL=you@example.com \
--env FEEDBIN_PASSWORD=your_password \
-- feedbin-mcpVerify it's registered:
claude mcp listThe server will be available in all Claude Code sessions. Type /mcp inside a session to confirm it's connected.
Credentials
Feedbin uses HTTP Basic Auth (email + password). The server reads credentials from two environment variables:
Variable | Description |
| Your Feedbin account email |
| Your Feedbin account password |
These are passed via --env in the claude mcp add command above and are never stored in the repository.
Running directly (without installing)
If you prefer not to install the package, you can run the server directly with Python after installing dependencies:
pip install mcp[cli] httpx
FEEDBIN_EMAIL=you@example.com \
FEEDBIN_PASSWORD=your_password \
python feedbin_mcp/server.pyAnd reference it in Claude Code as:
claude mcp add feedbin \
--env FEEDBIN_EMAIL=you@example.com \
--env FEEDBIN_PASSWORD=your_password \
-- python /path/to/FeedbinMCP/feedbin_mcp/server.pyThis server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.