Skip to content
VS Code

mcp belvo for VS Code

io.github.codespar/mcp-belvo

Belvo — Open Finance aggregator for LATAM

client:VS Code transport:stdio runtime:npm

Install mcp belvo in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "belvo-secret-id",
      "description": "BELVO_SECRET_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "belvo-secret-password",
      "description": "BELVO_SECRET_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "belvo-sandbox",
      "description": "BELVO_SANDBOX",
      "password": true
    }
  ],
  "servers": {
    "mcp-belvo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-belvo"
      ],
      "env": {
        "BELVO_SECRET_ID": "${input:belvo-secret-id}",
        "BELVO_SECRET_PASSWORD": "${input:belvo-secret-password}",
        "BELVO_SANDBOX": "${input:belvo-sandbox}"
      }
    }
  }
}

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

mcp belvo in other clients