cve-cache for VS Code
io.github.weiseer/cve-cache
Recent CVE + GHSA cache for AI agents auditing dependencies (npm/PyPI/Cargo/Maven/Go).
client:VS Code
transport:stdio
runtime:npm
Install cve-cache in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cve-cache-url",
"description": "CVE_CACHE_URL",
"password": true
},
{
"type": "promptString",
"id": "cve-cache-local-only",
"description": "CVE_CACHE_LOCAL_ONLY",
"password": true
}
],
"servers": {
"cve-cache": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@weiseer/cve-cache-mcp"
],
"env": {
"CVE_CACHE_URL": "${input:cve-cache-url}",
"CVE_CACHE_LOCAL_ONLY": "${input:cve-cache-local-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs