Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions servers/com.paypal-mcp-npx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
{
"$schema": "../schemas/server-definition.schema.json",
"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",
"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": "text",
"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
}
}