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

@chainpayto/mcp-server

v2.0.0

Published

ChainPay MCP Server — integrate ChainPay crypto payments into Claude, Cursor, and other AI agents via Model Context Protocol

Readme

@chainpayto/mcp-server

ChainPay MCP Server — 让 AI Agent 直接操作 ChainPay 加密货币收款系统。

支持 Claude Desktop、Cursor、Dify、Coze 等任何兼容 Model Context Protocol 的 AI 平台。

功能

| 工具 | 说明 | |------|------| | chainpay_get_supported_chains | 查询支持的链和代币(含费率、最低金额) | | chainpay_create_order | 创建支付订单,获取收款地址和支付链接 | | chainpay_get_order | 查询指定订单详情和状态 | | chainpay_list_orders | 分页查询订单列表 | | chainpay_get_balance | 查询商户账户余额 | | chainpay_create_withdrawal | 发起提现申请 |

快速配置

获取 API 凭证

  1. 登录 ChainPay 商户后台
  2. 进入 API Keys 页面,创建一个 API Key
  3. 复制 API KeyAPI Secret 明文(Secret 只显示一次,请妥善保存)
  4. 直接把明文填入下面的 CHAINPAY_API_SECRET不要再做 SHA256 哈希

⚠️ 升级提示:早期版本要求提前 sha256sum 处理 Secret,现已废弃。当前后端用明文 HMAC-SHA256 签名,Secret 明文保存在后台数据库。如果你之前用哈希版配好了,需要到后台 重置 API Key,用新 Secret 明文重新填入环境变量。


Claude Desktop

编辑 ~/.config/claude/claude_desktop_config.json(macOS/Linux)
%APPDATA%\Claude\claude_desktop_config.json(Windows):

{
  "mcpServers": {
    "chainpay": {
      "command": "npx",
      "args": ["-y", "@chainpayto/mcp-server"],
      "env": {
        "CHAINPAY_API_URL": "https://api.chainpay.to",
        "CHAINPAY_API_KEY": "your_api_key",
        "CHAINPAY_API_SECRET": "your_api_secret_plaintext"
      }
    }
  }
}

Cursor

编辑 ~/.cursor/mcp.json

{
  "mcpServers": {
    "chainpay": {
      "command": "npx",
      "args": ["-y", "@chainpayto/mcp-server"],
      "env": {
        "CHAINPAY_API_KEY": "your_api_key",
        "CHAINPAY_API_SECRET": "your_api_secret_plaintext"
      }
    }
  }
}

全局安装(可选)

如果不想每次都用 npx,可以全局安装:

npm install -g @chainpayto/mcp-server

安装后配置中将 "command": "npx", "args": ["-y", "@chainpayto/mcp-server"] 改为:

{
  "command": "chainpay-mcp",
  "args": []
}

环境变量

| 变量名 | 必填 | 说明 | 默认值 | |--------|------|------|--------| | CHAINPAY_API_KEY | ✅ | 商户 API Key | — | | CHAINPAY_API_SECRET | ✅ | API Secret 明文(不是哈希) | — | | CHAINPAY_API_URL | 可选 | API 地址(私有部署时修改) | https://api.chainpay.to |


使用示例

配置完成后,在 AI 对话中直接说:

"帮我创建一个 50 USDT 的 TRON 链支付订单,订单号 ORDER-001"

"查询一下 CP20260418163248523136 订单的状态"

"我的账户余额是多少?"

"帮我把 100 USDT (BSC) 提现到绑定的地址"


技术要求

  • Node.js >= 18
  • 无其他系统依赖,npx 自动处理

链接

License

MIT