mcp for VS Code
br.com.pushinpay/mcp
MCP oficial da PushinPay: cobranças PIX, consulta de transações e saldo via IA.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pushinpay-token",
"description": "PUSHINPAY_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "pushinpay-env",
"description": "PUSHINPAY_ENV",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@pushinpaybr/mcp-server"
],
"env": {
"PUSHINPAY_TOKEN": "${input:pushinpay-token}",
"PUSHINPAY_ENV": "${input:pushinpay-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs