vatnode mcp for VS Code
io.github.vatnode/vatnode-mcp
Official MCP server: EU VAT validation via VIES, plus offline rates and format checks.
client:VS Code
transport:stdio
runtime:npm
Install vatnode mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vatnode-api-key",
"description": "VATNODE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vatnode-api-url",
"description": "VATNODE_API_URL",
"password": true
}
],
"servers": {
"vatnode-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"vatnode-mcp"
],
"env": {
"VATNODE_API_KEY": "${input:vatnode-api-key}",
"VATNODE_API_URL": "${input:vatnode-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs