From 61e769deeb58476b643c692db2b32d86fe397b5f Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:29:35 +0000 Subject: [PATCH 1/3] Add PayPal MCP server definition Official PayPal MCP server for payments, invoices, orders, and subscriptions. Uses @paypal/mcp npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.paypal-mcp.json | 74 +++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 servers/com.paypal-mcp.json diff --git a/servers/com.paypal-mcp.json b/servers/com.paypal-mcp.json new file mode 100644 index 0000000..4535aec --- /dev/null +++ b/servers/com.paypal-mcp.json @@ -0,0 +1,74 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.paypal-mcp", + "name": "PayPal", + "alias": "paypal", + "description": "Process payments, manage orders, create invoices, handle disputes, and manage products and subscriptions through the PayPal API.", + "icon": "https://avatars.githubusercontent.com/u/476675?v=4", + "schema_version": "2.1", + "categories": ["cloud"], + "tags": ["paypal", "payments", "invoices", "orders", "subscriptions", "checkout"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@paypal/mcp", "--tools=all"], + "env": { + "PAYPAL_ACCESS_TOKEN": "${input:PAYPAL_ACCESS_TOKEN}", + "PAYPAL_ENVIRONMENT": "${input:PAYPAL_ENVIRONMENT}" + }, + "metadata": { + "inputs": [ + { + "id": "PAYPAL_ACCESS_TOKEN", + "label": "PayPal Access Token", + "description": "OAuth 2.0 access token for the PayPal REST API.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "A21AAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://developer.paypal.com/dashboard/applications", + "instructions": "1. Go to developer.paypal.com/dashboard\n2. Create or select an app\n3. Get your Client ID and Secret\n4. Generate an access token using the OAuth2 endpoint", + "button_label": "Get Credentials" + } + }, + { + "id": "PAYPAL_ENVIRONMENT", + "label": "PayPal Environment", + "description": "Use SANDBOX for testing or PRODUCTION for live payments.", + "type": "text", + "required": false, + "secret": false, + "placeholder": "SANDBOX" + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Generate an access token from your PayPal app at https://developer.paypal.com/dashboard/applications" + }, + + "contributor": { + "name": "PayPal", + "github": "paypal", + "url": "https://www.paypal.com" + }, + + "links": { + "repository": "https://github.com/paypal/paypal-mcp-server", + "homepage": "https://www.paypal.com", + "documentation": "https://developer.paypal.com/docs" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 50572cdb341e8091dd88d7ccbd172a6116eaba42 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:05 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for PAYPAL_ACCESS_TOKEN) --- servers/com.paypal-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.paypal-mcp.json b/servers/com.paypal-mcp.json index 4535aec..ad9c649 100644 --- a/servers/com.paypal-mcp.json +++ b/servers/com.paypal-mcp.json @@ -6,13 +6,25 @@ "description": "Process payments, manage orders, create invoices, handle disputes, and manage products and subscriptions through the PayPal API.", "icon": "https://avatars.githubusercontent.com/u/476675?v=4", "schema_version": "2.1", - "categories": ["cloud"], - "tags": ["paypal", "payments", "invoices", "orders", "subscriptions", "checkout"], - + "categories": [ + "cloud" + ], + "tags": [ + "paypal", + "payments", + "invoices", + "orders", + "subscriptions", + "checkout" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@paypal/mcp", "--tools=all"], + "args": [ + "-y", + "@paypal/mcp", + "--tools=all" + ], "env": { "PAYPAL_ACCESS_TOKEN": "${input:PAYPAL_ACCESS_TOKEN}", "PAYPAL_ENVIRONMENT": "${input:PAYPAL_ENVIRONMENT}" @@ -23,7 +35,7 @@ "id": "PAYPAL_ACCESS_TOKEN", "label": "PayPal Access Token", "description": "OAuth 2.0 access token for the PayPal REST API.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "A21AAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -45,26 +57,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Generate an access token from your PayPal app at https://developer.paypal.com/dashboard/applications" }, - "contributor": { "name": "PayPal", "github": "paypal", "url": "https://www.paypal.com" }, - "links": { "repository": "https://github.com/paypal/paypal-mcp-server", "homepage": "https://www.paypal.com", "documentation": "https://developer.paypal.com/docs" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From de58f2ac7e1ab6263297a8cfcba9ceb7b2235d14 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:12 +0800 Subject: [PATCH 3/3] fix: rename server files with transport suffix - com.paypal-mcp.json -> com.paypal-mcp-npx.json (id: com.paypal-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{com.paypal-mcp.json => com.paypal-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.paypal-mcp.json => com.paypal-mcp-npx.json} (97%) diff --git a/servers/com.paypal-mcp.json b/servers/com.paypal-mcp-npx.json similarity index 97% rename from servers/com.paypal-mcp.json rename to servers/com.paypal-mcp-npx.json index ad9c649..e645ffc 100644 --- a/servers/com.paypal-mcp.json +++ b/servers/com.paypal-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.paypal-mcp", - "name": "PayPal", + "id": "com.paypal-mcp-npx", + "name": "PayPal (npx)", "alias": "paypal", "description": "Process payments, manage orders, create invoices, handle disputes, and manage products and subscriptions through the PayPal API.", "icon": "https://avatars.githubusercontent.com/u/476675?v=4",