mcp getnet for VS Code
io.github.codespar/mcp-getnet
MCP server for Getnet — Santander-owned BR acquirer: credit, debit, Pix, boleto, marketplace split
client:VS Code
transport:stdio
runtime:npm
Install mcp getnet in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "getnet-client-id",
"description": "GETNET_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "getnet-client-secret",
"description": "GETNET_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "getnet-seller-id",
"description": "GETNET_SELLER_ID",
"password": true
},
{
"type": "promptString",
"id": "getnet-base-url",
"description": "GETNET_BASE_URL",
"password": true
}
],
"servers": {
"mcp-getnet": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-getnet"
],
"env": {
"GETNET_CLIENT_ID": "${input:getnet-client-id}",
"GETNET_CLIENT_SECRET": "${input:getnet-client-secret}",
"GETNET_SELLER_ID": "${input:getnet-seller-id}",
"GETNET_BASE_URL": "${input:getnet-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