Airwallex MCP Server

Official

Airwallex docs, API references and a live sandbox, wired straight into your coding agent.

Remote serverstreamable-http

What is the Airwallex Developer MCP server?

Airwallex's official developer connector: documentation search plus sandbox tools for transfers, FX quotes and payment links, all over an OAuth-protected HTTP endpoint. Exposed over MCP by the airwallex developer mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Airwallex's official developer connector: documentation search plus sandbox tools for transfers, FX quotes and payment links, all over an OAuth-protected HTTP endpoint.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Its toolset

Everything the assistant can do here goes through one of these:

  • Documentation search — Search Airwallex guides, integration best practices and API references and return the current documented behaviour
  • API reference lookup — Retrieve the request and response shape for a specific Airwallex endpoint, including required parameters
  • Sandbox transfers — Create and manage test transfers in the Airwallex sandbox, including cross-border payouts to suppliers
  • FX quotes — Fetch a foreign exchange quote for a given currency pair and amount so pricing can be modelled during development
  • Payment links — Create and manage sandbox payment links for a product or subscription plan to test the hosted checkout experience
  • Sandbox event simulation — Simulate platform events in sandbox so webhook handlers and downstream logic can be exercised on demand

Configuration

An Airwallex sandbox account for the developer endpoint (the docs endpoint needs no auth), plus an MCP client that supports remote HTTP servers.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the airwallex developer mcp server does with a few real requests.

When to reach for it

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Airwallex Developer's toolset — Documentation search, API reference lookup, Sandbox transfers and 3 more — is a fair guide to whether it matches your workflow. It is maintained by Airwallex rather than a third party, which usually means auth handling and breaking changes are dealt with faster.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

What you can do with it

Scaffolding a first integration

Have a coding agent read the current Airwallex reference and generate the initial payment or payout calls with correct field names, then verify them against sandbox immediately.

Debugging a rejected request

Feed the error back to the agent so it can re-read the relevant documentation and correct the payload without you switching to a browser.

Webhook handler testing

Trigger simulated sandbox events and confirm your handler processes each payload correctly before go-live.

Pricing and FX modelling

Ask for live sandbox FX quotes on realistic amounts while working out margins for a cross-border product.

Available tools

ToolWhat it does
Documentation searchSearch Airwallex guides, integration best practices and API references and return the current documented behaviour.
API reference lookupRetrieve the request and response shape for a specific Airwallex endpoint, including required parameters.
Sandbox transfersCreate and manage test transfers in the Airwallex sandbox, including cross-border payouts to suppliers.
FX quotesFetch a foreign exchange quote for a given currency pair and amount so pricing can be modelled during development.
Payment linksCreate and manage sandbox payment links for a product or subscription plan to test the hosted checkout experience.
Sandbox event simulationSimulate platform events in sandbox so webhook handlers and downstream logic can be exercised on demand.

How to install the Airwallex Developer MCP server

claude mcp add-json airwallex-dev '{ "type": "http", "url": "https://mcp.sandbox.airwallex.com/developer" }'

Configuration

An Airwallex sandbox account for the developer endpoint (the docs endpoint needs no auth), plus an MCP client that supports remote HTTP servers.

Example prompts to try

  • Using Airwallex, show me how to create a test payment link for a $29.99 monthly plan in the sandbox.
  • Create a sandbox transfer sending $1,000 to a supplier in Singapore and show me the request you sent.
  • What is the current USD to EUR quote for a $50,000 conversion?
  • Read the Airwallex docs on payment intents and tell me which fields are required for a 3DS flow.

Frequently asked questions

Docs MCP is documentation-only, unauthenticated, and read-only — it is safe to add to any agent. Developer MCP includes those same documentation tools plus sandbox capabilities such as creating test transfers, fetching FX quotes and simulating events, and it requires an OAuth sign-in with a sandbox account.