On/off-ramp de fiat-a-stablecoin: convertí BRL, MXN o USD a USDC y de vuelta. Tu agente hace el puente entre las finanzas tradicionales y los rieles cripto.
UnblockPay le da a tu agente 13 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier 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-unblockpayAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"unblockpay": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-unblockpay"
],
"env": {
"UNBLOCKPAY_API_KEY": "<your_unblockpay_api_key>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 13 herramientas de abajo — probá create_customer primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de 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 herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_customerlist_customersverify_customerget_verification_detailscreate_walletlist_walletscreate_external_accountlist_external_accountsMCP es un protocolo — cualquier framework que lo hable puede montar este server.