Alternative Payments for VS Code
io.github.wyre-technology/alternative-payments-mcp
MCP server for Alternative Payments — customers, invoices, payment requests, payouts, webhooks.
client:VS Code
transport:stdio
runtime:oci
Install Alternative Payments in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "alternative-payments-client-id",
"description": "ALTERNATIVE_PAYMENTS_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "alternative-payments-client-secret",
"description": "ALTERNATIVE_PAYMENTS_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "alternative-payments-environment",
"description": "ALTERNATIVE_PAYMENTS_ENVIRONMENT",
"password": true
},
{
"type": "promptString",
"id": "mcp-transport",
"description": "MCP_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "auth-mode",
"description": "AUTH_MODE",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"alternative-payments-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"
],
"env": {
"ALTERNATIVE_PAYMENTS_CLIENT_ID": "${input:alternative-payments-client-id}",
"ALTERNATIVE_PAYMENTS_CLIENT_SECRET": "${input:alternative-payments-client-secret}",
"ALTERNATIVE_PAYMENTS_ENVIRONMENT": "${input:alternative-payments-environment}",
"MCP_TRANSPORT": "${input:mcp-transport}",
"AUTH_MODE": "${input:auth-mode}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs