mcp picpay for VS Code
io.github.codespar/mcp-picpay
MCP server for PicPay Business — BR digital wallet (60M+ users): checkout, Pix QR, subscriptions
client:VS Code
transport:stdio
runtime:npm
Install mcp picpay in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "picpay-token",
"description": "PICPAY_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "picpay-seller-token",
"description": "PICPAY_SELLER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "picpay-base-url",
"description": "PICPAY_BASE_URL",
"password": true
}
],
"servers": {
"mcp-picpay": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-picpay"
],
"env": {
"PICPAY_TOKEN": "${input:picpay-token}",
"PICPAY_SELLER_TOKEN": "${input:picpay-seller-token}",
"PICPAY_BASE_URL": "${input:picpay-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs