Cross-border payments for LatAm: local payment methods, FX conversion, and mass payouts. Your agent sells globally and settles locally.
EBANX gives your agent 18 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
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-ebanxAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"ebanx": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-ebanx"
],
"env": {
"EBANX_API_KEY": "<your_ebanx_api_key>"
}
}
}
}After restart, your agent can call any of the 18 tools below β try create_payment first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
EBANX_API_KEYAPI key for ebanx
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_paymentget_paymentlist_paymentsrefundcreate_payoutexchange_rateget_banksquery_payment_by_merchant_codeMCP is a protocol β any framework that speaks it can mount this server.