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.
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:
pip install cve-mcp-server{
"mcpServers": {
"CVE": {
"command": "uvx",
"args": [
"cve-mcp-server"
]
},
}
}Run SSE Server
uvx cve-mcp-server sseUse the following configuration to connect directly:
{
"mcpServers": {
"amap-mcp-server": {
"url": "http://localhost:9999"
}
}
}You can use the MCP inspector to debug the server:
npx @modelcontextprotocol/inspector python -m cve-mcp-servercve-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.