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

@paychainly/mcp

v1.0.3

Published

MCP server for the Paychainly payment platform — control payments, customers, invoices and withdrawals from Claude Desktop or any AI agent

Readme

Paychainly MCP Server

MCP server for the Paychainly payment platform. Exposes 38 tools, 10 documentation resources, and 9 workflow prompts.

| Category | Count | |----------|-------| | Tools | 38 (customers, addresses, payment links, transactions, invoices, webhooks, withdrawals, sandbox, system) | | Resources | 10 (paychainly://docs/* — readable by Claude before acting) | | Prompts | 9 (4 integration pattern guides + 5 utility workflows) |

stdio (Claude Desktop) — via npm

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

{
  "mcpServers": {
    "paychainly": {
      "command": "npx",
      "args": ["-y", "@paychainly/mcp"],
      "env": {
        "PAYCHAINLY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Claude Desktop after saving. npx downloads and caches the package automatically — no global install needed.

Local development (stdio)

{
  "mcpServers": {
    "paychainly": {
      "command": "node",
      "args": ["/absolute/path/to/mcp.paychainly.com/dist/index.js"],
      "env": {
        "PAYCHAINLY_API_KEY": "your_api_key_here",
        "PAYCHAINLY_BASE_URL": "https://api.paychainly.com"
      }
    }
  }
}

HTTP/SSE (remote)

PORT=3003 PAYCHAINLY_BASE_URL=https://api.paychainly.com node dist/http.js

Connect Claude to: http://your-server:3003/sse Header: Authorization: Bearer your_api_key

Deploy with Docker

chmod +x docker-run.sh
PAYCHAINLY_BASE_URL=https://api.paychainly.com PORT=3003 ./docker-run.sh

Integration patterns

Not sure which workflow prompt to use? Pick based on your use case:

| # | Prompt | Use case | |---|--------|----------| | 1 | setup_wallet | User wallet / permanent deposit address / balance top-up | | 2 | wallet_topup_with_link | Fixed-amount top-up with hosted checkout page | | 3 | order_checkout | E-commerce order / invoice / subscription (logged-in user) | | 4 | guest_checkout | One-off payment, no account needed, fully anonymous |

For patterns 2, 3, and 4 — the response always includes all three payment options from the same single call:

  • payUrl → redirect user to hosted checkout (QR, countdown, MetaMask connect)
  • address → show in your own custom UI
  • address → QR-encode it yourself

Workflow prompts

| Prompt | Description | |--------|-------------| | setup_wallet | Pattern 1 — permanent deposit wallet for a customer (mode: reuse) | | wallet_topup_with_link | Pattern 2 — fixed-amount payment link on an existing wallet | | order_checkout | Pattern 3 — per-order checkout for a logged-in user | | guest_checkout | Pattern 4 — per-order checkout with no customer required | | lookup_customer_history | Look up a customer and show all their transactions | | verify_webhook_signature | Code examples for verifying webhook HMAC signatures | | sandbox_test_payment | End-to-end test flow using sandbox mode (no real funds) | | initiate_withdrawal | Safely withdraw USDT to an external wallet | | check_account_status | Full account health overview |


Links