On/off-ramp de fiat-pra-stablecoin: converta BRL, MXN ou USD pra USDC e de volta. Seu agente faz a ponte entre as finanças tradicionais e as trilhas cripto.
O UnblockPay dá ao seu agente 13 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
create_customer — Create an individual or business customer (KYC mother). Business customers require date_of_incorporation; both types use 3-letter ISO country codes (BRA/USA/MEX). Returns { id, status: 'pending', verification: { verification_link } }.list_customers — List customers under the operator's API key. `limit` is mandatory per UnblockPay's pagination contract.verify_customer — Trigger the KYC verification check for a customer. Sandbox auto-progresses business customers through the hosted KYC flow once documents are uploaded. Idempotent — returns 422 'customer_cannot_be_verified' when already approved (safe to ignore).// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_customer", { /* ... */ });$ npm install @codespar/mcp-unblockpayAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"unblockpay": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-unblockpay"
],
"env": {
"UNBLOCKPAY_API_KEY": "<your_unblockpay_api_key>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 13 ferramentas abaixo — teste create_customer primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.
UNBLOCKPAY_API_KEYAPI key from the UnblockPay dashboard
UNBLOCKPAY_BASE_URLOptional API base URL. Defaults to https://api.unblockpay.com/v1. Set to https://api.sandbox.unblockpay.com/v1 to hit the sandbox.
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
create_customerlist_customersverify_customerget_verification_detailscreate_walletlist_walletscreate_external_accountlist_external_accountsMCP é um protocolo — qualquer framework que o fale pode montar este server.