mcp c6 for VS Code
io.github.codespar/mcp-c6
MCP server for C6 Bank — Pix (cob/cobv), DICT keys, Boleto, balance, statement (OAuth2 + mTLS)
client:VS Code
transport:stdio
runtime:npm
Install mcp c6 in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "c6-client-id",
"description": "C6_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "c6-client-secret",
"description": "C6_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "c6-cert-path",
"description": "C6_CERT_PATH",
"password": true
},
{
"type": "promptString",
"id": "c6-key-path",
"description": "C6_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "c6-env",
"description": "C6_ENV",
"password": true
}
],
"servers": {
"mcp-c6": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-c6"
],
"env": {
"C6_CLIENT_ID": "${input:c6-client-id}",
"C6_CLIENT_SECRET": "${input:c6-client-secret}",
"C6_CERT_PATH": "${input:c6-cert-path}",
"C6_KEY_PATH": "${input:c6-key-path}",
"C6_ENV": "${input:c6-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs