Skip to content
VS Code

VulnFeed for VS Code

io.github.infai-tech/vulnfeed

Dependency vulnerability scanner with EPSS scoring. 9 MCP tools. Free tier + x402.

client:VS Code transport:stdio runtime:pypi

Install VulnFeed in VS Code

.vscode/mcp.json

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

VulnFeed in other clients