npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

inoreader-mcp

v1.0.0

Published

A powerful TypeScript MCP server that connects AI assistants to Inoreader RSS feeds for intelligent content management

Readme

📰 Inoreader MCP Server

A TypeScript implementation of an MCP (Model Context Protocol) server that provides AI assistants with access to Inoreader RSS feeds and articles.

Features

  • 8 MCP Tools for comprehensive RSS feed management
  • Full TypeScript with complete type safety
  • Smart Caching to optimize API usage
  • Bulk Operations for efficient article management
  • Error Handling with graceful fallbacks
  • Claude Desktop Ready with easy configuration

Installation

npm install -g inoreader-mcp

Quick Start

1. Get Inoreader API Credentials

  1. Go to Inoreader Developer Console
  2. Create a new application
  3. Note your App ID and App Key

2. Configure Environment

Set these environment variables:

INOREADER_APP_ID=your_app_id
INOREADER_APP_KEY=your_app_key
[email protected]
INOREADER_PASSWORD=your_password

3. Add to Claude Desktop

Edit your Claude Desktop config:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "inoreader": {
      "command": "npx",
      "args": ["inoreader-mcp"],
      "env": {
        "INOREADER_APP_ID": "your_app_id",
        "INOREADER_APP_KEY": "your_app_key",
        "INOREADER_USERNAME": "your_email",
        "INOREADER_PASSWORD": "your_password"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | inoreader_list_feeds | List all RSS feeds with unread counts | | inoreader_list_articles | List articles with filters (unread, by feed, date range) | | inoreader_search | Search articles by keyword | | inoreader_get_content | Get full article content | | inoreader_mark_as_read | Mark articles as read (single or bulk) | | inoreader_summarize | Generate article summaries | | inoreader_analyze | Analyze articles for trends and insights | | inoreader_stats | Get feed statistics |

Usage Examples

Ask Claude:

  • "Show me my unread articles from today"
  • "Search for articles about artificial intelligence"
  • "Summarize the top 5 articles from TechCrunch"
  • "Mark all articles older than a week as read"
  • "What are the trending topics in my feeds?"

Development

Build from Source

# Download the source code
cd inoreader-mcp
npm install
npm run build

Run Tests

npm test
npm run test:coverage

Project Structure

src/
├── index.ts          # Entry point
├── server.ts         # MCP server implementation
├── inoreader-api.ts  # Inoreader API client
├── auth.ts           # Authentication handling
├── types.ts          # TypeScript definitions
└── tools/            # MCP tool implementations

Troubleshooting

Authentication Failed

  • Verify credentials in Inoreader web interface
  • Check that username is your full email
  • Ensure API access is enabled for your account

Environment Variables Not Loading

  • Restart Claude Desktop after config changes
  • Check JSON syntax in config file
  • Try setting variables in .env file

Network Issues

  • Check internet connection
  • Verify Inoreader API is accessible
  • Check firewall settings

License

MIT License - See LICENSE file

Support


Built with ❤️ by Dindi Coelho