cvefeed-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cvefeed-mcpfind CVEs related to log4j"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
cvefeed-mcp
Model Context Protocol (MCP) server for the CVEFeed.io vulnerability intelligence API. Gives Claude Desktop, Cursor, Cline, and any other MCP-aware agent direct access to CVE search, project subscriptions, and vulnerability alerts.
Install
pip install cvefeed-mcp
# or
uvx cvefeed-mcpRelated MCP server: NVD MCP Server
Authenticate
Create a Project API Token at https://cvefeed.io/project/settings/api-tokens/, copy it, and export it alongside the numeric id of the project the token was issued for:
export CVEFEED_API_TOKEN=cvefeed_XXXXXXXX_...
export CVEFEED_PROJECT_ID=42Each token is bound to exactly one project — one MCP install targets one project. The project id is the integer in your project dashboard URL (/project/detail/<slug>/; the numeric id is also shown in the project settings page).
Recommended scopes for full MCP functionality
MCP tools span four resource scopes. Grant read on every resource the agent may touch so it doesn't hit an "insufficient scope" error mid-task:
vulnerabilities: read— CVE / CPE / CVEQL / EPSS discovery toolssubscriptions: read(orwriteto let the agent add / remove product subscriptions)alerts: read(orwriteto let the agent mark alerts as read)activity_log: read— Enterprise only; required byread_project_activity_log
write implies read, so you don't need to tick both on the same resource.
Optionally override the base URL for staging or self-hosted deployments:
export CVEFEED_BASE_URL=https://cvefeed.io # defaultUse with Claude Desktop
Add to your ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or equivalent:
{
"mcpServers": {
"cvefeed": {
"command": "uvx",
"args": ["cvefeed-mcp"],
"env": {
"CVEFEED_API_TOKEN": "cvefeed_XXXXXXXX_...",
"CVEFEED_PROJECT_ID": "42"
}
}
}
}Use with Cursor / Cline
Same MCP server config format — point command at cvefeed-mcp (or uvx cvefeed-mcp) and set CVEFEED_API_TOKEN + CVEFEED_PROJECT_ID in the env block.
Available tools
Tool | Purpose | Auth required |
| Full-text and filter search over the CVE catalog | Optional |
| Fetch full metadata for a single CVE | Optional |
| Execute a CVEQL query for advanced hunting | Optional |
| Resolve CPE 2.3 URIs to CVEs/products/vendors | Pro tier |
| Public exploits and EPSS scores | Pro tier |
| List subscriptions on the configured project |
|
| Subscribe the project to a product |
|
| Unsubscribe from a product |
|
| Search products with subscription status |
|
| Read vulnerability alerts on the project |
|
| Mark an alert as read |
|
| Read project audit log |
|
Every project-scoped tool targets the single project set via CVEFEED_PROJECT_ID; the LLM never passes a project id.
Local development
cd mcp-server
pip install -e ".[dev]"
pytest -vTransport
Ships stdio transport only (what Claude Desktop, Cursor, and Cline expect). Remote streamable-HTTP transport may follow in a later release.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAn MCP server for vulnerability management that provides tools for automated severity and CWE classification using NLP models. It enables AI agents to query the Vulnerability Lookup API for detailed CVE information and search for security vulnerabilities across various sources.Last updated30AGPL 3.0
- AlicenseAqualityAmaintenanceMCP server for the NIST National Vulnerability Database — lets AI assistants search CVEs by keyword, severity, CPE, CWE, KEV status, and date range via natural language.Last updated2GPL 3.0
- Alicense-qualityDmaintenanceA Model Context Protocol (MCP) server for accessing the CIRCL CVE SEARCH API, providing comprehensive vulnerability and security information.Last updated10MIT
- AlicenseAqualityDmaintenanceMCP server that provides tools to search, filter, and retrieve CVE data from the NVD API, including by ID, keyword, severity, and recency.Last updated4MIT
Related MCP Connectors
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
MCP server for ScanMalware.com URL scanning, malware detection, and analysis.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cvefeed/cvefeed-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server