Kontor MCP for VS Code
io.github.dashankanadeeshandesilva/kontor-mcp
Offline e-invoice tools for AI agents: validate, audit, convert and generate XRechnung/ZUGFeRD.
client:VS Code
transport:stdio
runtime:npm
Install Kontor MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kontor-max-file-mb",
"description": "KONTOR_MAX_FILE_MB",
"password": true
},
{
"type": "promptString",
"id": "kontor-lang-default",
"description": "KONTOR_LANG_DEFAULT",
"password": true
}
],
"servers": {
"kontor-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@kontor-mcp/server"
],
"env": {
"KONTOR_MAX_FILE_MB": "${input:kontor-max-file-mb}",
"KONTOR_LANG_DEFAULT": "${input:kontor-lang-default}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs