mcp itau for VS Code
io.github.codespar/mcp-itau
MCP server for Itaú Unibanco — Pix, Cobrança (boleto), Arrecadação, Extrato (OAuth2 + mTLS)
client:VS Code
transport:stdio
runtime:npm
Install mcp itau in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "itau-client-id",
"description": "ITAU_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "itau-client-secret",
"description": "ITAU_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "itau-cert-path",
"description": "ITAU_CERT_PATH",
"password": true
},
{
"type": "promptString",
"id": "itau-key-path",
"description": "ITAU_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "itau-env",
"description": "ITAU_ENV",
"password": true
}
],
"servers": {
"mcp-itau": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-itau"
],
"env": {
"ITAU_CLIENT_ID": "${input:itau-client-id}",
"ITAU_CLIENT_SECRET": "${input:itau-client-secret}",
"ITAU_CERT_PATH": "${input:itau-cert-path}",
"ITAU_KEY_PATH": "${input:itau-key-path}",
"ITAU_ENV": "${input:itau-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs