Skip to main content
EB

EBANX

v0.2.1API Key

Cross-border payments for LatAm: local payment methods, FX conversion, and mass payouts. Your agent sells globally and settles locally.

18 tools1 env vars🇧🇷 Brazilstable on npm

What your agent can do

EBANX gives your agent 18 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.

  • create_paymentCreate a payment in EBANX (boleto, credit card, PIX, etc.)
  • get_paymentGet payment details by hash
  • list_paymentsList payments by date range
Example call
// 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", { /* ... */ });

Install

terminal
$ npm install @codespar/mcp-ebanx

Quickstart

Add this entry to your claude_desktop_config.json (or any MCP-compatible client config).

claude_desktop_config.json
{
  "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.

Environment variables · 1

Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.

EBANX_API_KEY
requiredsecret

API key for ebanx

Available tools · 18

Each tool is independent — your agent loads only what it needs to reduce context and response time.

WRITEcreate_payment
Create a payment in EBANX (boleto, credit card, PIX, etc.)
WRITEget_payment
Get payment details by hash
WRITElist_payments
List payments by date range
DELETErefund
Refund a payment (full or partial)
WRITEcreate_payout
Create a payout to a bank account
READexchange_rate
Get current exchange rate for a currency pair
READget_banks
List available banks for a country
WRITEquery_payment_by_merchant_code
Get payment details by merchant_payment_code (alternative to hash)

Compatible frameworks

MCP is a protocol — any framework that speaks it can mount this server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Any MCP clientProtocol

Frequently asked questions

Run `npx -y @codespar/mcp-ebanx` and add the config block above to your MCP client — Claude, Cursor, VS Code, or any MCP-compatible client. No build step, no SDK required. Prefer hosted? CodeSpar's managed tier runs it for you with auth handled.
EBANX — MCP server · 18 tools | CodeSpar