Skip to content
VS Code

invapi mcp for VS Code

io.github.invapi-org/invapi-mcp

Extract, create, convert & validate invoices (UBL, CII, XRechnung, ZUGFeRD, PDF, Excel)

client:VS Code transport:stdio runtime:npm

Install invapi mcp in VS Code

.vscode/mcp.json

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

invapi mcp in other clients