Skip to content
VS Code

Eleata e-Invoice Validator for VS Code

io.github.hernaninverso/eleata-einvoice-mcp

Validate EU e-invoices (Peppol, XRechnung, Factur-X, UBL, CII) and explain error codes.

client:VS Code transport:stdio runtime:npm

Install Eleata e-Invoice Validator in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "einvoice-api-key",
      "description": "EINVOICE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "eleata-einvoice-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "eleata-einvoice-mcp"
      ],
      "env": {
        "EINVOICE_API_KEY": "${input:einvoice-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

Eleata e-Invoice Validator in other clients