Skip to content
VS Code

vdb for VS Code

kr.ai.vdb/vdb

Check packages for CVEs, slopsquatting, and CISA KEV before your AI agent installs them.

client:VS Code transport:stdio runtime:pypi

Install vdb in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vdb-api-url",
      "description": "VDB_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vdb-api-token",
      "description": "VDB_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "vdb": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "vdb-mcp"
      ],
      "env": {
        "VDB_API_URL": "${input:vdb-api-url}",
        "VDB_API_TOKEN": "${input:vdb-api-token}"
      }
    }
  }
}

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

vdb in other clients