Skip to content
VS Code

wundervault mcp for VS Code

io.github.wundervault/wundervault-mcp

Zero-knowledge MCP secrets vault for AI agents: secrets injected at runtime, never seen by the model

client:VS Code transport:stdio runtime:npm

Install wundervault mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wundervault-agent-name",
      "description": "WUNDERVAULT_AGENT_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wundervault-agent-token",
      "description": "WUNDERVAULT_AGENT_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "wundervault-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wundervault/mcp-server"
      ],
      "env": {
        "WUNDERVAULT_AGENT_NAME": "${input:wundervault-agent-name}",
        "WUNDERVAULT_AGENT_TOKEN": "${input:wundervault-agent-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

wundervault mcp in other clients