Skip to content
VS Code

mcp einvoicing be for VS Code

io.github.cmendezs/mcp-einvoicing-be

Belgian e-invoicing MCP server: Peppol BIS 3.0, UBL 2.1, EU PINT v1.0.1, Mercurius.

client:VS Code transport:stdio runtime:pypi

Install mcp einvoicing be in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bce-api-key",
      "description": "BCE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "peppol-env",
      "description": "PEPPOL_ENV",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-einvoicing-be": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-einvoicing-be"
      ],
      "env": {
        "BCE_API_KEY": "${input:bce-api-key}",
        "PEPPOL_ENV": "${input:peppol-env}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

mcp einvoicing be in other clients