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

rivlwatch-mcp

v1.1.0

Published

MCP server for RivlWatch — track Shopify rivals' sales, read their Meta ads libraries (creatives, copy, reach, media), browse your saved-ads swipe file, and discover winning creatives from any MCP client (Claude Desktop, Claude Code, OpenClaw, etc.).

Readme

RivlWatch MCP server

Bring your RivlWatch competitor intelligence into any MCP client (Claude Desktop, Claude Code, OpenClaw, etc.). Ask in plain language — "which of my rivals sold the most today?", "what is allbirds running on Meta right now?", "summarize the hooks in my Q4 Winners collection" — and it answers from your live RivlWatch account.

Full public docs: https://rivlwatch.com/mcp

Tools

| Tool | What it does | Cost | |------|--------------|------| | whoami | Confirm the connection + show the signed-in account/plan | free | | list_my_stores | Your tracked stores with today's revenue, orders, products | free | | store_creatives | One tracked store's full Meta ads library: copy, days running, reach, media | free | | saved_ads | Your saved-ads swipe file + Collections + labels + cached AI reads | free | | saved_tiktok_finds | Your saved TikTok Shop products + monitored TikTok videos | free | | my_top_ads | Reach-ranked top creatives across your tracked stores (or the global pool) | free | | ad_audience | One ad's EU demographics: gender split, age bands, top countries | free | | winning_creatives | The global winning-creatives discovery feed (filter by window/format/country/AI) | free | | track_store | Start tracking a store by URL (Shopify, Cloudflare-Shopify, or ads-only) | uses a plan store slot |

All calls inherit your subscription server-side — the MCP can never do more than your account can, a lapsed plan returns a clear error, and all key traffic shares one per-account rate budget (HTTP 429 + Retry-After when exceeded). track_store is the only tool with a side effect; everything else is read-only.

Setup

  1. Get an API key: RivlWatch → Settings → API keys → Create API key. Copy the rivl_… token (shown once).

  2. Install deps (once):

    cd mcp-server
    npm install
  3. Register it with your MCP client.

    Claude Desktop — edit claude_desktop_config.json (Settings → Developer → Edit Config):

    {
      "mcpServers": {
        "rivlwatch": {
          "command": "node",
          "args": ["/ABSOLUTE/PATH/TO/mcp-server/index.js"],
          "env": { "RIVLWATCH_API_KEY": "rivl_your_key_here" }
        }
      }
    }

    Restart Claude Desktop. You'll see the rivlwatch tools available.

    Claude Codeclaude mcp add rivlwatch -e RIVLWATCH_API_KEY=rivl_… -- node /ABS/PATH/mcp-server/index.js

Verify

RIVLWATCH_API_KEY=rivl_… npm run smoke

Lists the tools and calls each read tool against the live API. Point at a local dev server with RIVLWATCH_API_BASE=http://localhost:3007.

Media URLs

Tool responses link ad creatives two ways: archived media under https://rivlwatch.com/api/media/... is durable — the endpoint requires your API key (Authorization: Bearer rivl_…) or a logged-in browser, and resolves to an unguessable storage URL; live fbcdn.net URLs are public but expire after ~4 days.

Config

| Env | Default | Notes | |-----|---------|-------| | RIVLWATCH_API_KEY | — | required — your rivl_… key | | RIVLWATCH_API_BASE | https://rivlwatch.com | override for local/staging |

Pairs with the RivlWatch skill

Drop rivlwatch-skill/ into your agent's skills folder (e.g. ~/.claude/skills/rivlwatch/ for Claude Code, or your OpenClaw skills dir) so the model knows the best workflows for these tools — see rivlwatch-skill/SKILL.md.