PayZuPayZu Docs

MCP 服务器

MCP 是开放协议,让 AI 助手通过 JSON-RPC 调用外部工具。payzu-mcp-conta-digital 暴露了 Conta Digital API 的 14 个精选 tools(Pix in/out、TED、内部转账、余额、账户信息、流水)。

安装

Claude Desktop

{
  "mcpServers": {
    "payzu-conta-digital": {
      "command": "npx",
      "args": ["-y", "payzu-mcp-conta-digital"],
      "env": {
        "PAYZU_TOKEN": "<您的-token>"
      }
    }
  }
}

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "payzu-conta-digital": {
      "command": "npx",
      "args": ["-y", "payzu-mcp-conta-digital"],
      "env": { "PAYZU_TOKEN": "..." }
    }
  }
}

配置

环境变量必填默认值说明
PAYZU_TOKEN,来自 abrirconta.payzu.com.br 的 Bearer token
PAYZU_HUB_API_URLhttps://pix.payzu.io/v1Conta Digital 的基础 URL

Tools 列表 (14)

存款 (4)

ToolHTTP
deposits.create_pixPOST /pix
deposits.get_pixGET /pix/{id}
deposits.proofGET /proof/{id}
deposits.refundPOST /pix/refund/{id}

提现 (6)

ToolHTTP
withdraw.by_pix_keyPOST /withdraw
withdraw.by_bank_dataPOST /withdraw/bank-data
withdraw.tedPOST /ted
withdraw.by_qrPOST /withdraw/qrcode
withdraw.internal_transferPOST /internal-transfer
withdraw.proofGET /proof/{id}

账户 (4)

ToolHTTP
account.balanceGET /user/balance
account.profileGET /user
account.transactionsGET /user/transactions
account.summaryGET /user/summary

约定

  • 金额采用十进制雷亚尔 (99.90,而非 9990)。
  • 创建操作必须传 clientReference(idempotência)。
  • callbackUrl 需为 HTTPS 公网地址,5 秒内响应 2xx。
  • 5xx/429 自动重试(3 次,指数退避 + jitter)。
  • 错误响应包含 requestId

Conta Digital 与 Pix Processamento 对比

如果您需要高吞吐量的纯 Pix 配合 MED、API callbacks、CSV 报表,请使用 payzu-mcp-pix。如果您需要完整的银行账户(Pix + TED + 转账 + 流水),请使用本包。

支持

On this page