invovate mcp server for VS Code
io.github.lightspeedplusone/invovate-mcp-server
AI-agent invoice generator: PDF, JSON & UBL in 11 languages via the Invovate API.
client:VS Code
transport:stdio
runtime:npm
Install invovate mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "invovate-api-key",
"description": "INVOVATE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "invovate-api-base",
"description": "INVOVATE_API_BASE",
"password": true
}
],
"servers": {
"invovate-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"invovate-mcp-server"
],
"env": {
"INVOVATE_API_KEY": "${input:invovate-api-key}",
"INVOVATE_API_BASE": "${input:invovate-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs