FeedbinMCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
pip install -e .
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "FEEDBIN_EMAIL=${FEEDBIN_EMAIL}" -e "FEEDBIN_PASSWORD=${FEEDBIN_PASSWORD}" feedbin -- node "<FULL_PATH_TO_FEEDBINMCP>/dist/index.js"

Replace <FULL_PATH_TO_FEEDBINMCP>/dist/index.js with the actual folder you prepared in step 1.

Required:FEEDBIN_EMAILFEEDBIN_PASSWORD
README.md

Connects Claude to your Feedbin RSS account

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
get_subscriptions List all subscribed feeds
get_feed Get details for a specific feed
get_unread_entries Paginated unread articles
get_read_entries Paginated read articles
get_starred_entries Paginated starred articles
get_entries Entries with filters (feed, date, IDs)
get_entry Full content for a single entry
get_unread_entry_ids Flat list of all unread IDs
get_starred_entry_ids Flat list of all starred IDs
mark_entries_read Mark one or more entries as read
mark_entries_unread Mark one or more entries as unread
star_entries Star (bookmark) entries
unstar_entries Remove star from entries
get_tags List all tags
get_taggings Feed-to-tag mappings

Requirements

  • Python 3.11+
  • A Feedbin account
  • pip (ships with Python)

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 --help

Adding 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-mcp

Verify it's registered:

claude mcp list

The 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
FEEDBIN_EMAIL Your Feedbin account email
FEEDBIN_PASSWORD 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.py

And 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.py

Tools (15)

get_subscriptionsList all subscribed feeds
get_feedGet details for a specific feed
get_unread_entriesPaginated unread articles
get_read_entriesPaginated read articles
get_starred_entriesPaginated starred articles
get_entriesEntries with filters (feed, date, IDs)
get_entryFull content for a single entry
get_unread_entry_idsFlat list of all unread IDs
get_starred_entry_idsFlat list of all starred IDs
mark_entries_readMark one or more entries as read
mark_entries_unreadMark one or more entries as unread
star_entriesStar (bookmark) entries
unstar_entriesRemove star from entries
get_tagsList all tags
get_taggingsFeed-to-tag mappings

Environment Variables

FEEDBIN_EMAILrequiredYour Feedbin account email
FEEDBIN_PASSWORDrequiredYour Feedbin account password

Configuration

claude_desktop_config.json
{"mcpServers": {"feedbin": {"command": "feedbin-mcp", "env": {"FEEDBIN_EMAIL": "your_email", "FEEDBIN_PASSWORD": "your_password"}}}}

Try it

Show me my unread articles from today.
Star the latest article from my tech news feed.
List all my current RSS subscriptions and their tags.
Mark all articles in the 'Design' tag as read.

Frequently Asked Questions

What are the key features of FeedbinMCP?

Read and manage RSS articles directly from Claude. Support for marking entries as read or unread. Star and unstar entries for bookmarking. Browse subscriptions, tags, and feed-to-tag mappings. Paginated access to unread, read, and starred entries.

What can I use FeedbinMCP for?

Managing large volumes of RSS feeds by asking Claude to summarize unread items. Quickly bookmarking important articles into Feedbin stars via natural language. Organizing reading lists by filtering entries based on specific tags. Clearing out read items from a feed without leaving the Claude interface.

How do I install FeedbinMCP?

Install FeedbinMCP by running: pip install -e .

What MCP clients work with FeedbinMCP?

FeedbinMCP works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep FeedbinMCP docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare