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

rss-watcher-cli

v1.0.10

Published

A fast, TypeScript-native RSS/JSON feed reader with a built-in [MCP](https://modelcontextprotocol.io/) server. Built on [Bun](https://bun.sh/) and SQLite.

Readme

rss-watcher-cli

A fast, TypeScript-native RSS/JSON feed reader with a built-in MCP server. Built on Bun and SQLite.

Why rss-watcher-cli over blogwatcher-cli?

| | rss-watcher-cli | blogwatcher-cli | | ------------------------ | ------------------------------------------------------------------------------------ | --------------- | | Runtime | Bun (fast, single binary) | Go | | MCP server | ✅ Built-in (mcp command) | ❌ | | AI-agent integration | Tools for adding feeds, pulling articles, marking read/unread — all callable by LLMs | None | | Transport | stdio | N/A | | Feed formats | RSS & JSON Feed | RSS | | HTML sanitization | Strips tags & limits content length automatically | Raw HTML |

The headline feature is the MCP server: run rss-watcher-cli mcp and any MCP-compatible client (Claude Desktop, Cursor, custom agents) can manage your feeds and read articles programmatically.

Installation

bun install

Usage

$ rss-watcher-cli <command> [options]

Managing feeds

# Add a feed
rss-watcher-cli add https://example.com/feed.xml
rss-watcher-cli add https://example.com/feed.xml --name "My Blog"

# Remove a feed by name or URL
rss-watcher-cli remove "My Blog"
rss-watcher-cli remove https://example.com/feed.xml

# List all tracked blogs
rss-watcher-cli blogs

Reading articles

# Pull new articles from all feeds
rss-watcher-cli pull

# List unread articles
rss-watcher-cli articles

# List all articles (including read)
rss-watcher-cli articles --all

# Filter by blog name or date
rss-watcher-cli articles --blog "My Blog"
rss-watcher-cli articles --since 2025-01-01
rss-watcher-cli articles --since 24h
rss-watcher-cli articles --limit 10

# Mark articles as read/unread
rss-watcher-cli read 42
rss-watcher-cli unread 42
rss-watcher-cli read-all

MCP server

# Start the MCP server over stdio
rss-watcher-cli mcp

The MCP server exposes these tools to AI agents:

| Tool | Description | | --------------- | ------------------------------------- | | add_feed | Add a new RSS or JSON feed | | remove_feed | Remove a feed by name or URL | | pull_feeds | Pull updates for all feeds | | list_blogs | List all tracked blogs | | list_articles | List articles (with optional filters) | | mark_read | Mark an article as read | | mark_unread | Mark an article as unread | | mark_all_read | Mark all articles as read |

Global options

--db <path>    Set a custom database path
-h, --help     Display help
-v, --version  Display version number

Development

# Run the CLI
bun run cli

# Start the MCP server
bun run mcp

# Lint, format, and type-check
bun run check

# Generate database migrations
bun run db:generate