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

@bitcoinbenji/mcp

v0.1.0

Published

MCP server for Bitcoin Benji API — Lightning-paid mempool intelligence + AI inference. Sovereign, on-prem, no third-party APIs.

Readme

@bitcoinbenji/mcp

MCP server for Bitcoin Benji API — 26 Lightning-paid tools for Bitcoin mempool intelligence + sovereign on-prem AI inference.

No third-party APIs. No data leakage. Pay-per-call in sats.

What you get

Mempool intelligence (from a real Bitcoin Core full node):

  • get_fees — fee estimates with trend
  • get_whales — whale/consolidation alerts
  • get_mempool_state — live mempool state
  • get_mempool_history — 24h rolling snapshots
  • predict_fees — EMA-based prediction
  • get_recent_blocks — recent blocks
  • tx_status — lookup any txid
  • fee_quote — exact fee for a planned tx

AI inference (Qwen3 on dedicated GPU, no third-party APIs):

  • ai_summarize, ai_sentiment, ai_translate, ai_grammar
  • ai_code_review, ai_code_generate, ai_extract, ai_classify
  • ai_rewrite, ai_explain, ai_agent, ai_scrape
  • ai_embed, ai_vision, ai_ocr, ai_transcribe_table
  • ai_longform (~50K-word docs flat-fee), ai_research (multi-step + cited)

Pricing: 2–100 sats per call. See api.bitcoinbenji.com/pricing.

Install

npm install -g @bitcoinbenji/mcp

Use in Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "bitcoinbenji": {
      "command": "bitcoinbenji-mcp"
    }
  }
}

Restart Claude. Ask: "What are current Bitcoin fees?" — Claude will call get_fees, hit a 402 challenge, return a Lightning invoice. Pay it with any wallet, paste the preimage back, and Claude completes the call.

Use in Cursor / Cline / Continue / Windsurf

Same idea — point your MCP-compatible client at the bitcoinbenji-mcp binary.

Skip the manual payment loop — use an API key

Pre-fund a key once, then every call auto-debits in the background:

# Get a key (one-time): visit https://api.bitcoinbenji.com or curl /api/key/create
# Then:
export BITCOIN_BENJI_API_KEY="bb_live_..."
bitcoinbenji-mcp

Or in Claude Desktop config:

{
  "mcpServers": {
    "bitcoinbenji": {
      "command": "bitcoinbenji-mcp",
      "env": { "BITCOIN_BENJI_API_KEY": "bb_live_..." }
    }
  }
}

Why this exists

Most AI inference APIs require a credit card, an account, and a SaaS subscription. This one runs on a sovereign solar-powered AMD Strix Halo box, accepts payment in sats over Lightning, and never leaks your prompts to OpenAI/Anthropic/Google.

Source

github.com/ocbenji/mempool-broker

License

MIT