vantagate mcp server for VS Code
io.github.aderix/vantagate-mcp-server
VantaGate MCP Server & OpenAPI integration - Human-in-the-Loop for AI Agents
client:VS Code
transport:stdio
runtime:npm
Install vantagate mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vanta-api-key",
"description": "VANTA_API_KEY",
"password": true
}
],
"servers": {
"vantagate-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@vantagate/mcp-server"
],
"env": {
"VANTA_API_KEY": "${input:vanta-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