Skip to content

Commit 61e769d

Browse files
committed
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
1 parent 0217546 commit 61e769d

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

servers/com.paypal-mcp.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.paypal-mcp",
4+
"name": "PayPal",
5+
"alias": "paypal",
6+
"description": "Process payments, manage orders, create invoices, handle disputes, and manage products and subscriptions through the PayPal API.",
7+
"icon": "https://avatars.githubusercontent.com/u/476675?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud"],
10+
"tags": ["paypal", "payments", "invoices", "orders", "subscriptions", "checkout"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@paypal/mcp", "--tools=all"],
16+
"env": {
17+
"PAYPAL_ACCESS_TOKEN": "${input:PAYPAL_ACCESS_TOKEN}",
18+
"PAYPAL_ENVIRONMENT": "${input:PAYPAL_ENVIRONMENT}"
19+
},
20+
"metadata": {
21+
"inputs": [
22+
{
23+
"id": "PAYPAL_ACCESS_TOKEN",
24+
"label": "PayPal Access Token",
25+
"description": "OAuth 2.0 access token for the PayPal REST API.",
26+
"type": "password",
27+
"required": true,
28+
"secret": true,
29+
"placeholder": "A21AAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
30+
"obtain": {
31+
"url": "https://developer.paypal.com/dashboard/applications",
32+
"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",
33+
"button_label": "Get Credentials"
34+
}
35+
},
36+
{
37+
"id": "PAYPAL_ENVIRONMENT",
38+
"label": "PayPal Environment",
39+
"description": "Use SANDBOX for testing or PRODUCTION for live payments.",
40+
"type": "text",
41+
"required": false,
42+
"secret": false,
43+
"placeholder": "SANDBOX"
44+
}
45+
]
46+
}
47+
},
48+
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Generate an access token from your PayPal app at https://developer.paypal.com/dashboard/applications"
52+
},
53+
54+
"contributor": {
55+
"name": "PayPal",
56+
"github": "paypal",
57+
"url": "https://www.paypal.com"
58+
},
59+
60+
"links": {
61+
"repository": "https://github.com/paypal/paypal-mcp-server",
62+
"homepage": "https://www.paypal.com",
63+
"documentation": "https://developer.paypal.com/docs"
64+
},
65+
66+
"platforms": ["all"],
67+
68+
"capabilities": {
69+
"tools": true,
70+
"resources": false,
71+
"prompts": false,
72+
"read_only_mode": false
73+
}
74+
}

0 commit comments

Comments
 (0)