Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Inoreader

FreeNot checked

Inoreader — Model Context Protocol server

GitHubEmbed

About

Inoreader — Model Context Protocol server

README

An MCP (Model Context Protocol) server that provides RSS feed management capabilities through the Inoreader API. This enables LLMs like Claude to read and manage RSS feeds on your behalf.

Built with Bun for fast startup and low memory usage.

Features

  • OAuth2 authentication - Browser-based login with secure keychain storage
  • Automatic token refresh - Tokens are refreshed automatically when expired
  • Read articles - Get unread, starred, or all articles from your feeds
  • Manage subscriptions - Add or remove RSS feed subscriptions
  • Organize content - Mark articles as read/unread, star articles, add tags
  • Browse feeds - List subscriptions, folders, tags, and unread counts

Requirements

  • Bun 1.0+
  • Inoreader Pro account (API access requires Pro subscription)
  • Inoreader API credentials (App ID and App Key)
  • macOS: Keychain (built-in)
  • Linux: libsecret (apt install libsecret-tools)

Installation

Quick Start (via bunx)

No installation required - run directly from GitHub:

bunx github:seiji/inoreader-mcp-server          # latest
bunx github:seiji/inoreader-mcp-server#v0.1.0   # specific version

Local Development

git clone https://github.com/seiji/inoreader-mcp-server.git
cd inoreader-mcp-server
bun install

Authentication

1. Get API Credentials

  1. Go to Inoreader Developer Portal
  2. Register a new application with these settings:
    • Redirect URI: http://localhost:19812/callback
    • Scopes: read and write
  3. Note your App ID and App Key

2. Set Environment Variables

export INOREADER_APP_ID="your-app-id"
export INOREADER_APP_KEY="your-app-key"

3. Login

# This opens your browser for OAuth authentication
bun run src/index.ts auth login

Tokens are securely stored in your system keychain:

  • macOS: Keychain Access
  • Linux: GNOME Keyring / KDE Wallet (via libsecret)

Auth Commands

# Login - opens browser for OAuth authentication
bunx github:seiji/inoreader-mcp-server auth login

# Check authentication status
bunx github:seiji/inoreader-mcp-server auth status

# Logout - remove tokens from keychain
bunx github:seiji/inoreader-mcp-server auth logout

Usage

Running the Server

# Via bunx (recommended)
bunx github:seiji/inoreader-mcp-server

# Local development
bun run start

Claude Desktop Configuration

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "inoreader": {
      "command": "bunx",
      "args": ["github:seiji/inoreader-mcp-server"],
      "env": {
        "INOREADER_APP_ID": "your-app-id",
        "INOREADER_APP_KEY": "your-app-key"
      }
    }
  }
}

Note: Before running the auth command, ensure INOREADER_APP_ID and INOREADER_APP_KEY are set in your shell environment (see 2. Set Environment Variables above). After configuring, run bunx github:seiji/inoreader-mcp-server auth login once to authenticate. Tokens are stored in keychain and automatically refreshed.

Available Tools

Tool Description
get_user_info Get authenticated user information
get_unread_counts Get unread counts for all feeds
get_subscriptions List all RSS subscriptions
get_folders_and_tags List folders and tags
get_articles Get articles from feeds (with filters)
get_starred_articles Get starred/saved articles
add_subscription Subscribe to a new RSS feed
remove_subscription Unsubscribe from a feed
mark_as_read Mark articles as read
mark_as_unread Mark articles as unread
star_article Star/save an article
unstar_article Remove star from article
add_tag_to_article Add custom tag to article
remove_tag_from_article Remove tag from article

Example Interactions

Once configured with Claude, you can:

  • "Show me my unread articles"
  • "What are my RSS subscriptions?"
  • "Subscribe to https://example.com/feed.xml"
  • "Mark all articles in my Tech folder as read"
  • "Star the first article about AI"
  • "How many unread articles do I have?"

Development

# Install dependencies
bun install

# Run in development mode (with watch)
bun run dev

# Type check
bun run typecheck

# Lint
bun run lint

# Format
bun run format

Troubleshooting

"Keychain is not available"

Linux: Install libsecret-tools:

sudo apt install libsecret-tools

"Token expired" errors

Run bunx github:seiji/inoreader-mcp-server auth login to re-authenticate.

Disclaimer

This project is an unofficial, community-developed tool and is not affiliated with, endorsed by, or sponsored by Inoreader. "Inoreader" is a trademark of Innologica Ltd.

To use this MCP server, you must:

This project does not include any API keys or tokens. Each user must obtain their own credentials.

License

MIT

from github.com/seiji/inoreader-mcp-server

Installing Inoreader

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/seiji/inoreader-mcp-server

FAQ

Is Inoreader MCP free?

Yes, Inoreader MCP is free — one-click install via Unyly at no cost.

Does Inoreader need an API key?

No, Inoreader runs without API keys or environment variables.

Is Inoreader hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Inoreader in Claude Desktop, Claude Code or Cursor?

Open Inoreader 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

Compare Inoreader with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs