This MCP server exposes tools to query the NVD/CVE REST API and return formatted text results suitable for LLM consumption via the MCP protocol. It includes automatic query chunking for large date ranges and parallel processing for improved performance.
590
6 Tools
Version 4.43 or later needs to be installed to add the server automatically
Tools
Name | Description |
---|---|
get_temporal_context | Get current date and temporal context when it needed. **USAGE**: Call this tool FIRST when user asks for time-relative question like "this year", "last year", "6 months ago", etc. Returns current date context and examples for constructing specific date parameters. |
search_cves | Search CVEs by keyword in description, with flexible time filtering. **IMPORTANT**: For time-relative queries (this year, last year, etc.), call get_temporal_context() FIRST to get current date information. **Date filtering logic (in priority order):** - If start_date and end_date are provided → use them directly - Else if last_days is provided → calculate start_date = now - last_days - Else fallback to last 30 days **Technical notes:** - If the time period > 120 days, queries are split into 120-day chunks - start_date, end_date: Use ISO 8601 format: "YYYY-MM-DDTHH:MM:SS" - recent_days parameter is deprecated, use last_days instead. |
Manual installation
You can install the MCP server using:
Installation for