Skip to content
VS Code

PostgreSQL CVE & Release Intelligence for VS Code

io.github.meob/pg-cve-mcp

PostgreSQL security for AI agents: CVEs, yanked releases, exploits, and upgrade paths

client:VS Code transport:stdio runtime:pypi

Install PostgreSQL CVE & Release Intelligence in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pg-cve-mcp-ttl",
      "description": "PG_CVE_MCP_TTL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pg-cve-mcp-data-url",
      "description": "PG_CVE_MCP_DATA_URL",
      "password": true
    }
  ],
  "servers": {
    "pg-cve-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pg-cve-mcp"
      ],
      "env": {
        "PG_CVE_MCP_TTL": "${input:pg-cve-mcp-ttl}",
        "PG_CVE_MCP_DATA_URL": "${input:pg-cve-mcp-data-url}"
      }
    }
  }
}

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

PostgreSQL CVE & Release Intelligence in other clients