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

@boltzpay/mcp

v0.3.2

Published

MCP server for BoltzPay — add paid API access to Claude Desktop

Readme

npm License: MIT TypeScript

@boltzpay/mcp

MCP server for BoltzPay — gives Claude Desktop and any MCP client the ability to discover, quote, and pay APIs across three protocols. 7 tools, zero code.

Quick Start

npx @boltzpay/mcp

Add to Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "boltzpay": {
      "command": "npx",
      "args": ["-y", "@boltzpay/mcp"],
      "env": {
        "COINBASE_API_KEY_ID": "your-key-id",
        "COINBASE_API_KEY_SECRET": "your-key-secret",
        "COINBASE_WALLET_SECRET": "your-wallet-secret"
      }
    }
  }
}

Omit the env block to run in explore-only mode — discover, quote, diagnose, and wallet all work without credentials.

Multi-Protocol

BoltzPay auto-detects the payment protocol for every endpoint:

| Protocol | Payment | Detection | |----------|---------|-----------| | x402 | USDC on Base (EVM) | 402 + X-PAYMENT header | | L402 | Lightning Network (sats) | 402 + WWW-Authenticate: L402 | | MPP | Stripe, Tempo, Visa (fiat) | 402 + X-MPP or payment link |

No configuration needed — the SDK probes the endpoint and routes to the correct adapter.

Tools

| Tool | Description | Requires Keys | |------|-------------|:-------------:| | boltzpay_fetch | Fetch a paid API endpoint. Auto-detects protocol, pays, returns response body + payment metadata. | Yes | | boltzpay_quote | Check the price of an endpoint without paying. Returns protocol, amount, currency, and chain alternatives. | No | | boltzpay_discover | Search the BoltzPay registry for paid APIs. Filter by category, protocol, score, or free-text query. | No | | boltzpay_budget | View spending limits, amount spent, and remaining balance (daily, monthly, per-transaction). | No | | boltzpay_history | List payments made during the current session with URLs, amounts, protocols, chains, and timestamps. | No | | boltzpay_wallet | Check wallet connectivity, configured credentials, account addresses, balances, and budget. | No | | boltzpay_diagnose | Full endpoint diagnostic — DNS, protocol detection (x402/L402/MPP), format version, pricing, multi-chain support, health, and latency. | No |

boltzpay_discover

Backed by the live BoltzPay registry (6,900+ endpoints, 400+ providers), not a static directory.

| Parameter | Type | Description | |-----------|------|-------------| | category | string? | Filter by category | | protocol | string? | Filter by protocol: x402, l402, or mpp | | minScore | number? | Minimum trust score (0-100, EWMA-weighted) | | query | string? | Search by provider name or endpoint URL |

boltzpay_diagnose

Probes a URL and returns a complete diagnostic report in one call:

  • DNS resolution and HTTP status
  • Protocol detection across all three protocols (x402, L402, MPP)
  • Format version and payment scheme
  • Pricing (per-chain when multi-chain)
  • Health classification and latency breakdown

No payment credentials required.

Environment Variables

| Variable | Required | Description | |----------|:--------:|-------------| | COINBASE_API_KEY_ID | For x402 | Coinbase CDP API key ID | | COINBASE_API_KEY_SECRET | For x402 | Coinbase CDP API key secret | | COINBASE_WALLET_SECRET | For x402 | Coinbase CDP wallet secret | | NWC_CONNECTION_STRING | For L402 | Nostr Wallet Connect URI (Lightning payments) | | BOLTZPAY_NETWORK | No | base (default) or base-sepolia (testnet) | | BOLTZPAY_DAILY_BUDGET | No | Daily spending cap in USD (e.g. 5.00) | | BOLTZPAY_MONTHLY_BUDGET | No | Monthly spending cap in USD (e.g. 100.00) | | BOLTZPAY_PER_TRANSACTION | No | Max per-transaction amount in USD (e.g. 1.00) | | BOLTZPAY_LOG_LEVEL | No | debug, info, warn, error, or silent |

Links

Part of BoltzPay

This package is part of the BoltzPay open-source SDK — giving AI agents the ability to discover and pay for APIs automatically across x402, L402, and MPP.

License

MIT