cve-mcp-server
If you are the rightful owner of cve-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Model Context Protocol server providing CVE vulnerability information query capabilities.
CVE MCP Server
A Model Context Protocol server providing CVE vulnerability information query capabilities. This server enables LLMs to query detailed information for specific CVE IDs, retrieving data from MITRE's CVE database.
Available Tools
query_cve
- Query vulnerability information by CVE ID- Required parameters:
cve_id
(string): The CVE identifier (e.g., 'CVE-2021-44228', 'CVE-2023-34362')
- Required parameters:
Install
pip install cve-mcp-server
Configuration
stdio (default)
{
"mcpServers": {
"CVE": {
"command": "uvx",
"args": [
"cve-mcp-server"
]
},
}
}
SSE
Run SSE Server
uvx cve-mcp-server sse
Use the following configuration to connect directly:
{
"mcpServers": {
"amap-mcp-server": {
"url": "http://localhost:9999"
}
}
}
Debugging
You can use the MCP inspector to debug the server:
npx @modelcontextprotocol/inspector python -m cve-mcp-server
License
cve-mcp-server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.