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

@bitcompare/mcp-server

v1.0.5

Published

Official Bitcompare MCP server — crypto rates, prices, coin metadata, and market stats for Claude and other MCP-compatible agents.

Readme

@bitcompare/mcp-server

The official crypto MCP server: native Claude access to crypto rates, prices, coin metadata, stablecoin stability, and market stats. Built on Model Context Protocol — works with Claude Desktop, Claude Code, Claude.ai, and any MCP-compatible agent.

One npm install, eighteen tools, one API key.

npx -y @bitcompare/mcp-server

Requires a Bitcompare Pro or Enterprise plan. Get a ck_live_* key at https://pro.bitcompare.net/dashboard/keys.

What you get

18 read-only tools, all gated by the same plan limits as REST:

  • Crypto yield rates — current & historical lending, borrowing, savings, and staking APYs across 50+ providers
  • Coins — metadata, markets, history, similar coins, top-by-market-cap lookups, 500+ tracked
  • Prices — aggregated exchange prices with median + outlier filtering
  • Global market stats — total market cap, dominance, Fear & Greed Index, 24h top movers
  • Stablecoin rates & stability — peg deviation leaderboard, historical drift, yield comparison
  • Symbol resolution — map exchange-specific tickers (BTC, XBT, wBTC) to canonical coin IDs

Full tool catalog: https://www.bitcompare.net/mcp · machine-readable: https://api.bitcompare.net/mcp/tools.json · agent manifest: https://api.bitcompare.net/llms.txt.

Install

You don't need to install it — run via npx:

BITCOMPARE_API_KEY=ck_live_... npx @bitcompare/mcp-server --test

Configure Claude Desktop

Edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "bitcompare": {
      "command": "npx",
      "args": ["-y", "@bitcompare/mcp-server"],
      "env": {
        "BITCOMPARE_API_KEY": "ck_live_..."
      }
    }
  }
}

Restart Claude Desktop. Ask "what's the best yield on BTC right now?" — Claude will call get_rates and answer from live data.

Configure Claude Code

In your project's .claude/settings.local.json:

{
  "mcpServers": {
    "bitcompare": {
      "command": "npx",
      "args": ["-y", "@bitcompare/mcp-server"],
      "env": {
        "BITCOMPARE_API_KEY": "ck_live_..."
      }
    }
  }
}

Hosted alternative

If you prefer not to install anything, we also run the MCP server at https://api.bitcompare.net/mcp over Streamable HTTP. Point your MCP client at that URL with an Authorization: Bearer ck_live_* header.

CLI flags

  • --test — validate your key and list available tools, then exit
  • --version — print version
  • --help — print help
  • --base-url <url> — override API base URL (for staging/dev)

Support