Skip to content
VS Code

openfinance br mcp for VS Code

io.github.brunovicco/openfinance-br-mcp

Secure Open Finance Brasil MCP server with typed tools and a credential-free mock mode

client:VS Code transport:stdio runtime:pypi

Install openfinance br mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "environment",
      "description": "ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "client-id",
      "description": "CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "private-key-path",
      "description": "PRIVATE_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "private-key-kid",
      "description": "PRIVATE_KEY_KID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mtls-cert-path",
      "description": "MTLS_CERT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mtls-key-path",
      "description": "MTLS_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "redis-url",
      "description": "REDIS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "openfinance-br-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "openfinance-br-mcp"
      ],
      "env": {
        "ENVIRONMENT": "${input:environment}",
        "CLIENT_ID": "${input:client-id}",
        "PRIVATE_KEY_PATH": "${input:private-key-path}",
        "PRIVATE_KEY_KID": "${input:private-key-kid}",
        "MTLS_CERT_PATH": "${input:mtls-cert-path}",
        "MTLS_KEY_PATH": "${input:mtls-key-path}",
        "REDIS_URL": "${input:redis-url}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
      }
    }
  }
}

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

openfinance br mcp in other clients