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

payzu-mcp-pix

v0.1.1

Published

MCP server for PayZu Pix Processamento API. 29 tools: Pix charges, withdrawals, transfers, callbacks, MED infractions. Works with Claude Desktop, Cursor, Continue.

Readme

payzu-mcp-pix

MCP server for the PayZu Pix Processamento API. Plugs into Claude Desktop, Cursor, Continue, and any other MCP-compatible AI client to let the assistant call PayZu's Pix API directly with typed tools.

29 tools spanning Pix charges, withdrawals, internal transfers, account info, reports, callbacks and MED infractions. No admin endpoints exposed.

Install

Claude Desktop / Continue

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

{
  "mcpServers": {
    "payzu-pix": {
      "command": "npx",
      "args": ["-y", "payzu-mcp-pix"],
      "env": {
        "PAYZU_TOKEN": "<your-bearer-token-from-dashboard>"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):

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

Configuration

| Env var | Required | Default | Description | |---|---|---|---| | PAYZU_TOKEN | yes | — | Bearer token from abrirconta.payzu.com.br | | PAYZU_API_URL | no | https://api.payzu.processamento.com/v1 | Override for whitelabel tenants |

Tools

Each tool description links to the corresponding endpoint page in docs.payzu.com.br.

Pix charges (4)

  • pix.create — POST /pix
  • pix.get — GET /pix
  • pix.qr_code — GET /pix/qr-code/{id}
  • pix.proof — GET /proof/{id}

Withdrawals (6)

  • withdraw.create — POST /withdraw (by Pix key)
  • withdraw.get — GET /withdraw
  • withdraw.by_qr — POST /withdraw/qrcode
  • withdraw.read_qr — POST /pix/qrcode/read
  • withdraw.dict — GET /pix-key/{key}
  • withdraw.proof — GET /withdraw/proof/{id}

Internal transfer (2)

  • internal_transfer.create — POST /internal-transfer
  • internal_transfer.get — GET /internal-transfer

Account (2)

  • account.profile — GET /user
  • account.balance — GET /user/balance

Reports (6)

  • reports.list_transactions — GET /user/transactions
  • reports.get_transaction — GET /user/transactions/{id}
  • reports.create_csv — POST /user/report
  • reports.list_jobs — GET /user/reports
  • reports.get_job — GET /user/report/{id}
  • reports.download — GET /user/report/{id}/download

Callbacks (4)

  • callbacks.list — GET /user/callbacks
  • callbacks.get — GET /user/callback/{id}
  • callbacks.resend — POST /user/callback/{id}/resend
  • callbacks.resend_bulk — POST /user/callbacks/resend

MED Infractions (5)

  • infractions.list — GET /infractions
  • infractions.get — GET /infractions/{id}
  • infractions.create_defense — POST /infractions/{id}/defense
  • infractions.list_defenses — GET /infractions/{id}/defenses
  • infractions.get_defense — GET /infractions/{id}/defense/{defenseId}

Conventions enforced

  • Amounts always in BRL decimals (99.90, not 9990). The MCP rejects centavos at input validation.
  • clientReference required on all create operations for idempotency.
  • callbackUrl required on creates so PayZu can notify when status changes.
  • Auto-retry on 5xx/429 with exponential backoff + jitter (3 attempts max).
  • Errors include requestId — log it and send to support if you need to investigate.

Custom base URL

If your account uses a custom Pix Processamento endpoint, override the default via env:

"env": {
  "PAYZU_TOKEN": "<your-token>",
  "PAYZU_API_URL": "https://api.example.processamento.com/v1"
}

All 29 tools work identically against any compatible endpoint.

Links

  • Documentation: https://docs.payzu.com.br/docs/pix-processamento
  • OpenAPI: https://docs.payzu.com.br/openapi.json
  • llms-full.txt: https://docs.payzu.com.br/pix-processamento/llms-full.txt
  • SKILL.md (compact reference for AI): https://docs.payzu.com.br/pix-processamento/SKILL.md
  • Issues: https://github.com/PayZuPlus/payzu-mcp/issues
  • npm SDKs: npm install payzu-pix

License

MIT