O inverso cross-border do EBANX — sellers da LatAm recebem do exterior (USD/EUR/GBP) e liquidam localmente. Payment intents, reembolsos, beneficiários, transferências, conversões de câmbio, saldos multimoeda.
O Airwallex dá ao seu agente 20 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
create_payment_intent — Create an Airwallex payment intent (pay-in). Used when a LatAm seller needs to collect USD/EUR/GBP from buyers abroad. Returns the intent with client_secret for client-side confirmation.confirm_payment_intent — Confirm a previously-created payment intent with a payment method. For card intents this triggers authorization; for APM intents this returns a next_action (redirect, QR, etc).retrieve_payment_intent — Retrieve a payment intent by id. Returns current status, payment_attempts, and latest payment_method.// 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_intent", { /* ... */ });$ npm install @codespar/mcp-airwallexAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"airwallex": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-airwallex"
],
"env": {
"AIRWALLEX_CLIENT_ID": "<your_airwallex_client_id>",
"AIRWALLEX_API_KEY": "<your_airwallex_api_key>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 20 ferramentas abaixo — teste create_payment_intent primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.
AIRWALLEX_CLIENT_IDAirwallex client id (sent as x-client-id on /authentication/login)
AIRWALLEX_API_KEYAirwallex API key, secret (sent as x-api-key on /authentication/login)
AIRWALLEX_ENVAirwallex environment. 'demo' (default, https://api-demo.airwallex.com) or 'production' (https://api.airwallex.com).
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
create_payment_intentconfirm_payment_intentretrieve_payment_intentcancel_payment_intentcapture_payment_intentlist_payment_intentscreate_refundretrieve_refundMCP é um protocolo — qualquer framework que o fale pode montar este server.