Skip to content

Commit 50572cd

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for PAYPAL_ACCESS_TOKEN)
1 parent 61e769d commit 50572cd

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/com.paypal-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Process payments, manage orders, create invoices, handle disputes, and manage products and subscriptions through the PayPal API.",
77
"icon": "https://avatars.githubusercontent.com/u/476675?v=4",
88
"schema_version": "2.1",
9-
"categories": ["cloud"],
10-
"tags": ["paypal", "payments", "invoices", "orders", "subscriptions", "checkout"],
11-
9+
"categories": [
10+
"cloud"
11+
],
12+
"tags": [
13+
"paypal",
14+
"payments",
15+
"invoices",
16+
"orders",
17+
"subscriptions",
18+
"checkout"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "npx",
15-
"args": ["-y", "@paypal/mcp", "--tools=all"],
23+
"args": [
24+
"-y",
25+
"@paypal/mcp",
26+
"--tools=all"
27+
],
1628
"env": {
1729
"PAYPAL_ACCESS_TOKEN": "${input:PAYPAL_ACCESS_TOKEN}",
1830
"PAYPAL_ENVIRONMENT": "${input:PAYPAL_ENVIRONMENT}"
@@ -23,7 +35,7 @@
2335
"id": "PAYPAL_ACCESS_TOKEN",
2436
"label": "PayPal Access Token",
2537
"description": "OAuth 2.0 access token for the PayPal REST API.",
26-
"type": "password",
38+
"type": "text",
2739
"required": true,
2840
"secret": true,
2941
"placeholder": "A21AAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -45,26 +57,23 @@
4557
]
4658
}
4759
},
48-
4960
"auth": {
5061
"type": "api_key",
5162
"instructions": "Generate an access token from your PayPal app at https://developer.paypal.com/dashboard/applications"
5263
},
53-
5464
"contributor": {
5565
"name": "PayPal",
5666
"github": "paypal",
5767
"url": "https://www.paypal.com"
5868
},
59-
6069
"links": {
6170
"repository": "https://github.com/paypal/paypal-mcp-server",
6271
"homepage": "https://www.paypal.com",
6372
"documentation": "https://developer.paypal.com/docs"
6473
},
65-
66-
"platforms": ["all"],
67-
74+
"platforms": [
75+
"all"
76+
],
6877
"capabilities": {
6978
"tools": true,
7079
"resources": false,

0 commit comments

Comments
 (0)