Plataforma global de collect + disburse en más de 100 países. Complementa a dLocal (enfocada en LatAm) con retiro en efectivo (OXXO Pay, 7-Eleven) y billeteras gestionadas por el merchant — única respecto a otros servers del catálogo.
Rapyd le da a tu agente 22 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
create_checkout_page — Create a Rapyd hosted checkout page. Returns a redirect_url the payer opens in a browser. Rapyd renders the appropriate local methods (cards, cash pickup, bank transfer, wallets) for the country + currency combination, so one call supports 100+ countries.create_payment — Create a direct payment with a fully-specified payment_method. Use when you already have a payment_method id/token or when you want server-to-server flow without the hosted page. For voucher/cash methods the response contains redirect/display data.get_payment — Retrieve a payment by Rapyd payment id (payment_xxx). Returns status, amount, method, and any next-action data.// 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_checkout_page", { /* ... */ });$ npm install @codespar/mcp-rapydAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"rapyd": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-rapyd"
],
"env": {
"RAPYD_ACCESS_KEY": "<your_rapyd_access_key>",
"RAPYD_SECRET_KEY": "<your_rapyd_secret_key>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 22 herramientas de abajo — probá create_checkout_page primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
RAPYD_ACCESS_KEYRapyd access key (sent in the access_key header)
RAPYD_SECRET_KEYRapyd secret key used to sign HMAC-SHA256 requests (never transmitted)
RAPYD_ENVRapyd environment: 'sandbox' (https://sandboxapi.rapyd.net) or 'production' (https://api.rapyd.net). Defaults to sandbox.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_checkout_pagecreate_paymentget_paymentcancel_paymentcreate_refundcreate_payoutget_payoutconfirm_payoutMCP es un protocolo — cualquier framework que lo hable puede montar este server.