Airwallex logo

Set up Developer MCP

Connect your AI assistant to the Airwallex Developer MCP server

Copy for LLMView as Markdown

To connect a compatible AI assistant to the Airwallex Developer Model Context Protocol (MCP) server and search Airwallex documentation or run sandbox operations from your coding environment, complete the steps in this guide.

Before you begin

Before you connect your AI assistant to the Developer MCP server, ensure you have:

  • A compatible AI assistant installed (Cursor, Claude Code, or other MCP-compatible tool).
  • Network access to https://mcp-demo.airwallex.com.
  • A sandbox account if you want to use the remote /developer endpoint or the local server.
  • Sandbox API credentials (Client ID and API Key) if you want to use the local server.
  • Node.js version 18.x or later installed and available on your PATH if you want to use the local server.

Connect your AI assistant

Cursor

You can use one-click installation links or manual configuration.

Documentation and sandbox tools at /developer. Cursor initiates OAuth to authenticate with Airwallex.

Install Airwallex Developer MCP in Cursor

Or manually add to your Cursor MCP settings:

JSON
1{
2 "mcpServers": {
3 "airwallex-dev": {
4 "type": "http",
5 "url": "https://mcp-demo.airwallex.com/developer"
6 }
7 }
8}

Cursor OAuth consent page for Airwallex Developer MCP

Airwallex sandbox login page for OAuth authentication

OAuth permission scopes page for Airwallex Developer MCP

Documentation-only access at /docs, without authentication.

Install Airwallex Developer MCP in Cursor

Or manually add to your Cursor MCP settings:

JSON
1{
2 "mcpServers": {
3 "airwallex-docs": {
4 "type": "http",
5 "url": "https://mcp-demo.airwallex.com/docs"
6 }
7 }
8}

Full tool access including billing tools, without OAuth.

Install Airwallex Developer MCP in Cursor

Or manually add the following to your Cursor MCP settings and fill in your sandbox credentials:

JSON
1{
2 "mcpServers": {
3 "airwallex-dev": {
4 "command": "npx",
5 "args": ["-y", "@airwallex/developer-mcp@latest"],
6 "env": {
7 "AIRWALLEX_SANDBOX_CLIENT_ID": "",
8 "AIRWALLEX_SANDBOX_API_KEY": "",
9 "AIRWALLEX_SANDBOX_ACCOUNT_ID": ""
10 }
11 }
12 }
13}

Claude Code

You can use one-click installation commands or manual configuration.

Documentation and sandbox tools at /developer. Claude Code initiates OAuth to authenticate with Airwallex.

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

Documentation-only access at /docs, without authentication.

Shell
1claude mcp add-json airwallex-docs '{ "type": "http", "url": "https://mcp-demo.airwallex.com/docs" }'

Full tool access including billing tools, without OAuth. Run the following command and fill in your sandbox credentials:

Shell
1claude mcp add-json airwallex-dev '{ "type": "stdio", "command":"npx", "args": ["-y", "@airwallex/developer-mcp@latest"], "env": { "AIRWALLEX_SANDBOX_CLIENT_ID": "", "AIRWALLEX_SANDBOX_API_KEY": "", "AIRWALLEX_SANDBOX_ACCOUNT_ID": "" } }'

Claude.ai/Claude Desktop

Connect using the built-in Airwallex Developer connector or a custom connector for documentation-only access.

Find the official Airwallex Developer connector from Settings > Connectors.

Developer MCP Claude Web Connector Search

Developer MCP Claude Web Connector Detail

When you try to connect, Claude will initiate an OAuth flow to authenticate with Airwallex.

Add custom connector for documentation-only MCP (/docs) without authentication. From Settings > Connectors > Add custom connector, use https://mcp-demo.airwallex.com/docs as the Remote MCP server URL.

Developer MCP Claude Web Custom Connector

Gemini CLI

Add the MCP configuration to your Gemini CLI MCP settings file.

Add the following configuration to your Gemini CLI MCP settings for /developer. Gemini CLI initiates OAuth to authenticate with Airwallex.

JSON
1{
2 "mcpServers": {
3 "airwallex-dev": {
4 "type": "http",
5 "url": "https://mcp-demo.airwallex.com/developer"
6 }
7 }
8}

Add the following configuration to your Gemini CLI MCP settings for documentation-only access at /docs (no authentication):

JSON
1{
2 "mcpServers": {
3 "airwallex-docs": {
4 "type": "http",
5 "url": "https://mcp-demo.airwallex.com/docs"
6 }
7 }
8}

Full tool access including billing tools, without OAuth. Add the following to your Gemini CLI MCP settings and fill in your sandbox credentials:

JSON
1{
2 "mcpServers": {
3 "airwallex-dev": {
4 "command": "npx",
5 "args": ["-y", "@airwallex/developer-mcp@latest"],
6 "timeout": 30000,
7 "env": {
8 "AIRWALLEX_SANDBOX_CLIENT_ID": "",
9 "AIRWALLEX_SANDBOX_API_KEY": "",
10 "AIRWALLEX_SANDBOX_ACCOUNT_ID": ""
11 }
12 }
13 }
14}

OpenAI Codex

Add the MCP configuration to your OpenAI Codex MCP settings file.

Add the following to your OpenAI Codex MCP settings for /developer. Codex initiates OAuth to authenticate with Airwallex.

toml
1[mcp_servers.airwallex-dev]
2type = "http"
3url = "https://mcp-demo.airwallex.com/developer"

Add the following to your OpenAI Codex MCP settings for documentation-only access at /docs (no authentication):

toml
1[mcp_servers.airwallex-docs]
2type = "http"
3url = "https://mcp-demo.airwallex.com/docs"

Full tool access including billing tools, without OAuth. Add the following to your OpenAI Codex MCP settings and fill in your sandbox credentials:

toml
1[mcp_servers.airwallex-dev]
2command = "npx"
3args = ["-y", "@airwallex/developer-mcp@latest"]
4
5[mcp_servers.airwallex-dev.env]
6AIRWALLEX_SANDBOX_CLIENT_ID = ""
7AIRWALLEX_SANDBOX_API_KEY = ""
8AIRWALLEX_SANDBOX_ACCOUNT_ID = ""

Lovable

Lovable is a web-based coding agent that only supports remote MCP servers. MCP server support requires a paid plan. Connect using the MCP server settings in your Lovable project.

Documentation and sandbox tools at /developer. Lovable initiates OAuth to authenticate with Airwallex.

Lovable OAuth Flow

Documentation-only access at /docs.

Lovable MCP Configuration

V0

V0 by Vercel is a web-based AI coding agent that only supports remote MCP servers. MCP server support requires a paid plan. Connect using the MCP server settings in your V0 project.

V0 does not support the /developer endpoint today. Use the Docs tab for the documentation-only server, or another coding agent if you need sandbox tools.

Documentation-only access at /docs.

JSON
1{
2 "mcpServers": {
3 "airwallex-docs": {
4 "type": "http",
5 "url": "https://mcp-demo.airwallex.com/docs"
6 }
7 }
8}

V0 MCP Configuration

Repl.it

Repl.it is a web-based AI coding agent that only supports remote MCP servers. Connect using the MCP server settings in your Repl.it project.

Documentation and sandbox tools at /developer. Repl.it initiates OAuth to authenticate with Airwallex.

Repl.it OAuth Flow

Documentation-only access at /docs.

Repl.it MCP Configuration

Configure the local server

Add the following environment variables to the env block in your MCP settings and fill in your sandbox credentials:

NameDescriptionRequired
AIRWALLEX_SANDBOX_CLIENT_IDClient ID associated with the sandbox API key.No
AIRWALLEX_SANDBOX_API_KEYAPI key (admin or scoped) from the sandbox environment. Must have permissions for the APIs you want to use.No
AIRWALLEX_SANDBOX_ACCOUNT_IDAccount ID for a scoped API key that accesses organization or multi-account resources. Starts with acct_.No
DISABLE_TELEMETRYSet to true to disable telemetry. When enabled, only anonymous tool usage data is collected — no parameters or responses are logged. Default: 0.No

Verify your connection

After setup, confirm the MCP server is connected before using it:

  1. Check that the Airwallex server appears in your editor's MCP configuration or settings panel.
  2. Send a test prompt that explicitly mentions Airwallex, for example: "Using Airwallex, show me how to create a test payment link in the sandbox."
  3. If the response references Airwallex documentation or invokes an Airwallex tool, the connection is working.

Next steps

Now that your AI assistant is connected, learn how to write effective prompts, explore the available tools, and troubleshoot common issues: Build integrations with Developer MCP.

Was this page helpful?