mcp paypal for VS Code
io.github.codespar/mcp-paypal
MCP server for PayPal — global payments + payouts: Orders v2, Payments, Subscriptions, Disputes
client:VS Code
transport:stdio
runtime:npm
Install mcp paypal in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "paypal-client-id",
"description": "PAYPAL_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "paypal-client-secret",
"description": "PAYPAL_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "paypal-env",
"description": "PAYPAL_ENV",
"password": true
}
],
"servers": {
"mcp-paypal": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-paypal"
],
"env": {
"PAYPAL_CLIENT_ID": "${input:paypal-client-id}",
"PAYPAL_CLIENT_SECRET": "${input:paypal-client-secret}",
"PAYPAL_ENV": "${input:paypal-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs