Back to MCP directory
publicPublicdnsLocal runtime

clawdpay-mcp

ClawdPay MCP是一个为AI助手Claude设计的支付工具,通过集成Privacy.com虚拟卡服务,使Claude能够安全地进行在线支付操作。

article

README

🚀 ClawdPay MCP

ClawdPay MCP 是一个 MCP 服务器,它能让 AI 智能体进行支付,具体来说,可使 Claude 使用 Privacy.com 的虚拟卡进行购物消费。

npm version

🚀 快速开始

你可以使用以下命令快速启动:

npx clawdpay-mcp

或者进行全局安装:

npm install -g clawdpay-mcp

📦 安装指南

手动安装步骤如下:

git clone https://github.com/Rishab87/clawdpay-mcp.git
cd clawdpay-mcp
npm install
npx playwright install chromium
npm run build

🛠️ 配置

创建 .env 文件,并按以下内容进行配置:

PRIVACY_API_KEY=your_key
PRIVACY_SANDBOX=true
HEADLESS=true

🖥️ Claude 桌面端设置

claude_desktop_config.json 中添加以下内容:

{
  "mcpServers": {
    "clawdpay": {
      "command": "npx",
      "args": ["clawdpay-mcp"],
      "env": {
        "PRIVACY_API_KEY": "your_key",
        "PRIVACY_SANDBOX": "true"
      }
    }
  }
}

💻 使用示例

工具使用说明

  • create_virtual_card:通过 Privacy.com 创建一次性虚拟卡。
  • secure_auto_fill:智能查找并填充当前页面的支付字段。
  • get_funding_sources:列出可用的资金账户。

📄 许可证

本项目采用 MIT 许可证。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client