El inverso transfronterizo de EBANX — sellers de LatAm cobran del exterior (USD/EUR/GBP) y liquidan localmente. Payment intents, reembolsos, beneficiarios, transferencias, conversiones de FX, balances multimoneda.
Airwallex le da a tu agente 20 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier 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-airwallexAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con 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>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 20 herramientas de abajo — probá create_payment_intent primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de 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 herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_payment_intentconfirm_payment_intentretrieve_payment_intentcancel_payment_intentcapture_payment_intentlist_payment_intentscreate_refundretrieve_refundMCP es un protocolo — cualquier framework que lo hable puede montar este server.