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

@cipherpay/mcp

v1.2.1

Published

MCP server for CipherPay — let AI agents create invoices, verify Zcash payments (x402 + MPP), manage sessions, and check statuses.

Readme

@cipherpay/mcp

MCP server for CipherPay — let AI agents create Zcash invoices, verify shielded payments, and check statuses.

Works with Claude Desktop, Cursor, and any MCP-compatible client.

Install

npm install -g @cipherpay/mcp

Or run directly with npx:

npx @cipherpay/mcp

Setup

Claude Desktop

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

{
  "mcpServers": {
    "cipherpay": {
      "command": "npx",
      "args": ["@cipherpay/mcp"],
      "env": {
        "CIPHERPAY_API_KEY": "cpay_sk_your_api_key_here"
      }
    }
  }
}

Cursor

Go to Settings > Tools & MCP > Add Custom MCP. Paste into the mcp.json that opens:

{
  "mcpServers": {
    "cipherpay": {
      "command": "npx",
      "args": ["@cipherpay/mcp"],
      "env": {
        "CIPHERPAY_API_KEY": "cpay_sk_your_api_key_here"
      }
    }
  }
}

Save, then reload the window (Cmd+Shift+P > "Reload Window").

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CIPHERPAY_API_KEY | For invoices + x402 | Your CipherPay API key (cpay_sk_...) | | CIPHERPAY_API_URL | No | API URL (default: https://api.cipherpay.app) |

Tools that don't require authentication (get_exchange_rates, get_invoice_status, get_product_info) work without an API key.

Tools

get_exchange_rates

Get current ZEC exchange rates against fiat currencies.

"What's the current ZEC price in USD?"

create_invoice

Create a Zcash payment invoice with amount, currency, and optional product details. Returns a payment address, ZIP-321 URI, and expiry time.

"Create an invoice for $25 USD" "Create an invoice for 50 EUR for product 'Annual Plan'"

get_invoice_status

Check if an invoice has been paid. Returns: pending, detected, confirmed, expired, or cancelled.

"Has invoice CP-1234 been paid?" "Check the status of invoice 8f3a..."

verify_x402_payment

Verify a shielded Zcash payment by transaction ID. For x402 (HTTP 402) resource servers that need to confirm a client's payment claim.

"Verify that transaction abc123... paid 0.001 ZEC"

get_product_info

Get product details and available prices from CipherPay.

"Show me the details for product 'premium-api'"

Resources

| URI | Description | |-----|-------------| | cipherpay://rates | Live ZEC exchange rates | | cipherpay://invoice/{id} | Invoice details by ID or memo code |

How It Works

The MCP server runs locally on your machine and acts as a bridge between your AI assistant and the CipherPay API:

AI Assistant (Claude, Cursor)
       │
       │ stdio (local, JSON-RPC)
       ▼
  @cipherpay/mcp (local process)
       │
       │ HTTPS (your API key)
       ▼
  api.cipherpay.app

Your API key stays on your machine. The MCP server makes authenticated REST calls to CipherPay on behalf of your AI assistant.

Get a CipherPay Account

  1. Go to cipherpay.app and register as a merchant.
  2. Provide your Zcash Unified Full Viewing Key (read-only, cannot spend funds).
  3. Get your API key (cpay_sk_...).
  4. Add it to your MCP config.

Links

License

MIT — Atmosphere Labs