Skip to content
VS Code

mcp nubank for VS Code

io.github.codespar/mcp-nubank

Nubank — Brazilian neobank via Open Finance, accounts, PIX, transfers

client:VS Code transport:stdio runtime:npm

Install mcp nubank in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nubank-client-id",
      "description": "NUBANK_CLIENT_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-nubank": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-nubank"
      ],
      "env": {
        "NUBANK_CLIENT_ID": "${input:nubank-client-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp nubank in other clients