mcp sicoob for VS Code
io.github.codespar/mcp-sicoob
MCP server for Sicoob — Pix (cob/cobv/DICT), Cobrança (boleto), SPB (OAuth2 + mTLS)
client:VS Code
transport:stdio
runtime:npm
Install mcp sicoob in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sicoob-client-id",
"description": "SICOOB_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "sicoob-client-secret",
"description": "SICOOB_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "sicoob-cert-path",
"description": "SICOOB_CERT_PATH",
"password": true
},
{
"type": "promptString",
"id": "sicoob-key-path",
"description": "SICOOB_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "sicoob-env",
"description": "SICOOB_ENV",
"password": true
}
],
"servers": {
"mcp-sicoob": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-sicoob"
],
"env": {
"SICOOB_CLIENT_ID": "${input:sicoob-client-id}",
"SICOOB_CLIENT_SECRET": "${input:sicoob-client-secret}",
"SICOOB_CERT_PATH": "${input:sicoob-cert-path}",
"SICOOB_KEY_PATH": "${input:sicoob-key-path}",
"SICOOB_ENV": "${input:sicoob-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs