🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@codespar/mcp-ebanx

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-ebanx

MCP server for EBANX — cross-border payments, payouts, exchange rates

latest
npmnpm
Version
0.2.2
Version published
Maintainers
2
Created
Source

@codespar/mcp-ebanx

MCP server for EBANX — cross-border payments for Latin America

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "ebanx": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-ebanx"],
      "env": {
        "EBANX_INTEGRATION_KEY": "your-key",
        "EBANX_SANDBOX": "true"
      }
    }
  }
}

Claude Code

claude mcp add ebanx -- npx @codespar/mcp-ebanx

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "ebanx": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-ebanx"],
      "env": {
        "EBANX_INTEGRATION_KEY": "your-key",
        "EBANX_SANDBOX": "true"
      }
    }
  }
}

Tools (18)

ToolPurpose
create_paymentCreate a payment in EBANX (boleto, credit card, PIX, etc.)
get_paymentGet payment details by hash
list_paymentsList payments by date range
refundRefund a payment (full or partial)
create_payoutCreate a payout to a bank account
exchange_rateGet current exchange rate for a currency pair
get_banksList available banks for a country
query_payment_by_merchant_codeGet payment details by merchant_payment_code (alternative to hash)
capture_paymentCapture a previously authorized credit card payment (full or partial).
cancel_paymentCancel/void a pending payment by hash (e.g.
create_mass_payoutCreate a mass payout — multiple payouts in a single batch request.
get_payoutQuery a payout by external_reference or payout id.
simulate_paymentSimulate the response of a payment in sandbox without persisting it (useful for integration testing).
list_payment_methodsList available payment methods for a country (which payment_type_codes are supported).
create_card_tokenTokenize a credit/debit card for reuse without re-collecting card data.
delete_card_tokenDelete a previously stored card token.
validate_documentValidate a LATAM tax document (CPF/CNPJ for BR, RFC for MX, DNI for AR/PE) using checksum/format rules.
verify_notificationVerify an EBANX webhook notification HMAC signature against the integration key.

Authentication

EBANX uses an integration key passed in the request body/query parameters.

Sandbox / Testing

EBANX provides a sandbox at sandbox.ebanx.com. Set EBANX_SANDBOX=true to use it.

Get your credentials

  • Go to EBANX Dashboard
  • Create a developer account
  • Get your integration key
  • Set the EBANX_INTEGRATION_KEY environment variable

Environment Variables

VariableRequiredDescription
EBANX_INTEGRATION_KEYYesIntegration key from EBANX dashboard
EBANX_SANDBOXNoSet to "true" for sandbox mode

Roadmap

v0.2 (planned)

  • create_subscription — Create a recurring subscription
  • cancel_payment — Cancel a pending payment
  • get_merchant_info — Get merchant account information
  • create_split — Create split payment rules

v0.3 (planned)

  • batch_payouts — Process multiple payouts in a single request
  • detailed_reports — Generate detailed financial reports

Want to contribute? Open a PR or request a tool.

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT

Keywords

mcp

FAQs

Package last updated on 22 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts