Skip to content
VS Code

mcp conta azul for VS Code

io.github.codespar/mcp-conta-azul

MCP server for Conta Azul — accounting, invoicing, customers, products

client:VS Code transport:stdio runtime:npm

Install mcp conta azul in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "conta-azul-access-token",
      "description": "CONTA_AZUL_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-conta-azul": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-conta-azul"
      ],
      "env": {
        "CONTA_AZUL_ACCESS_TOKEN": "${input:conta-azul-access-token}"
      }
    }
  }
}

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

mcp conta azul in other clients