mcp pomelo for VS Code
io.github.codespar/mcp-pomelo
MCP server for Pomelo — pan-LATAM card issuing: users, virtual/physical cards, transactions
client:VS Code
transport:stdio
runtime:npm
Install mcp pomelo in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pomelo-client-id",
"description": "POMELO_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "pomelo-client-secret",
"description": "POMELO_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "pomelo-env",
"description": "POMELO_ENV",
"password": true
},
{
"type": "promptString",
"id": "pomelo-base-url",
"description": "POMELO_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "pomelo-auth-url",
"description": "POMELO_AUTH_URL",
"password": true
},
{
"type": "promptString",
"id": "pomelo-audience",
"description": "POMELO_AUDIENCE",
"password": true
}
],
"servers": {
"mcp-pomelo": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-pomelo"
],
"env": {
"POMELO_CLIENT_ID": "${input:pomelo-client-id}",
"POMELO_CLIENT_SECRET": "${input:pomelo-client-secret}",
"POMELO_ENV": "${input:pomelo-env}",
"POMELO_BASE_URL": "${input:pomelo-base-url}",
"POMELO_AUTH_URL": "${input:pomelo-auth-url}",
"POMELO_AUDIENCE": "${input:pomelo-audience}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs