Pagos transfronterizos para LatAm: métodos de pago locales, conversión de FX y payouts masivos. Tu agente vende globalmente y liquida localmente.
EBANX le da a tu agente 18 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
create_payment — Create a payment in EBANX (boleto, credit card, PIX, etc.)get_payment — Get payment details by hashlist_payments — List payments by date range// 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_payment", { /* ... */ });$ npm install @codespar/mcp-ebanxAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"ebanx": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-ebanx"
],
"env": {
"EBANX_API_KEY": "<your_ebanx_api_key>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 18 herramientas de abajo — probá create_payment primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
EBANX_API_KEYAPI key for ebanx
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_paymentget_paymentlist_paymentsrefundcreate_payoutexchange_rateget_banksquery_payment_by_merchant_codeMCP es un protocolo — cualquier framework que lo hable puede montar este server.