Skip to content
VS Code

mcp open finance for VS Code

io.github.codespar/mcp-open-finance

MCP server for Open Finance Brasil — accounts, transactions, consents, credit, loans, investments

client:VS Code transport:stdio runtime:npm

Install mcp open finance in VS Code

.vscode/mcp.json

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

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

mcp open finance in other clients