Vantio Gate for VS Code
io.github.vantioai/vantio-gate
Vantio Gate — Policy Latch dry-run evaluate for agents. No live enforce from MCP.
client:VS Code
transport:stdio
runtime:npm
Install Vantio Gate in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vantio-api-key",
"description": "VANTIO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vantio-api-base",
"description": "VANTIO_API_BASE",
"password": true
}
],
"servers": {
"vantio-gate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@vantio/gate-mcp"
],
"env": {
"VANTIO_API_KEY": "${input:vantio-api-key}",
"VANTIO_API_BASE": "${input:vantio-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