From 1c0f6940354e50fdd966795067b54834e55a4fbc Mon Sep 17 00:00:00 2001 From: amar-awx Date: Thu, 4 Dec 2025 14:24:31 +0800 Subject: [PATCH 1/2] feat: add airwallex-dev mcp server --- servers/airwallex-dev/icon.svg | 38 +++++++++++++++++++++++++++++++ servers/airwallex-dev/server.json | 19 ++++++++++++++++ servers/index.json | 1 + 3 files changed, 58 insertions(+) create mode 100644 servers/airwallex-dev/icon.svg create mode 100644 servers/airwallex-dev/server.json diff --git a/servers/airwallex-dev/icon.svg b/servers/airwallex-dev/icon.svg new file mode 100644 index 0000000..ce6311d --- /dev/null +++ b/servers/airwallex-dev/icon.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/servers/airwallex-dev/server.json b/servers/airwallex-dev/server.json new file mode 100644 index 0000000..11a35a4 --- /dev/null +++ b/servers/airwallex-dev/server.json @@ -0,0 +1,19 @@ +{ + "name": "Airwallex Developer MCP", + "description": "Provides Cursor with tools to assist developers integrating with Airwallex APIs - Search Airwallex documentation & interact with the sandbox environment for testing and simulation.", + "transport": [ + "stdio" + ], + "icon": "./icon.svg", + "config": { + "command": "npx", + "args": [ + "-y", + "@airwallex/developer-mcp@latest" + ], + "env": { + "AIRWALLEX_SANDBOX_CLIENT_ID": "", + "AIRWALLEX_SANDBOX_API_KEY": "" + } + } +} diff --git a/servers/index.json b/servers/index.json index ef1cdf1..0ea530c 100644 --- a/servers/index.json +++ b/servers/index.json @@ -48,6 +48,7 @@ "sonarqube", "ms-learn-docs", "stripe", + "airwallex-dev", "paypal", "plaid", "firecrawl", From 9ebafe5e63db1abf81ae9322c106f450926273a2 Mon Sep 17 00:00:00 2001 From: Amarnath Ravikumar Date: Thu, 4 Dec 2025 14:33:55 +0800 Subject: [PATCH 2/2] fix: update server name and description --- servers/airwallex-dev/server.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/airwallex-dev/server.json b/servers/airwallex-dev/server.json index 11a35a4..f97e9f7 100644 --- a/servers/airwallex-dev/server.json +++ b/servers/airwallex-dev/server.json @@ -1,6 +1,6 @@ { - "name": "Airwallex Developer MCP", - "description": "Provides Cursor with tools to assist developers integrating with Airwallex APIs - Search Airwallex documentation & interact with the sandbox environment for testing and simulation.", + "name": "Airwallex Developer", + "description": "Tools to assist developers integrating with the Airwallex platform - Search documentation & interact with the sandbox environment for testing and simulation.", "transport": [ "stdio" ],