Skip to content
VS Code

Vaara MCP Server for VS Code

io.github.vaaraio/vaara-server

Accountable autonomy MCP server: gating, tamper-evident audit for every action

client:VS Code transport:stdio runtime:pypi

Install Vaara MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vaara-db",
      "description": "VAARA_DB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vaara-api-key",
      "description": "VAARA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "vaara-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "vaara"
      ],
      "env": {
        "VAARA_DB": "${input:vaara-db}",
        "VAARA_API_KEY": "${input:vaara-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

Vaara MCP Server in other clients