← News·Tools·1 weeks ago

cve-mcp-server

mukul975/cve-mcp-server is a production-grade MCP server that exposes CVE security intelligence tools (CVE lookup, EPSS, CISA KEV, MITRE ATT&CK, Shodan, VirusTotal, etc.) across many external APIs for Claude-style agent workflows.

Published 1 Sep 2026Source GitHub TrendingRead 1 min★ 1.3k+30 today+2%/dPython

I took a look at mukul975/cve-mcp-server, a production-grade MCP server that turns a set of CVE/security intelligence lookups into Claude-compatible tools.

What shipped here is straightforward: the server implements a tool surface (“27 security intelligence tools across 21 APIs”) covering the usual workflows—CVE search/lookup, EPSS scoring, CISA KEV, MITRE ATT&CK, and enrichment sources like Shodan and VirusTotal.

Where it’s useful (concretely) is any engineer workflow that needs evidence during incident response or vulnerability triage. For example: while reviewing an alert for an exposed service, I can ask an agent to look up the CVE, check whether it’s in CISA KEV, pull related ATT&CK techniques, and fetch external context (asset exposure / reputation signals). Doing this through an MCP tool layer keeps the agent logic in one place while the server handles the API integrations and parameters.

What to look at first is the repo’s MCP entry point: identify how the server is launched and how tool names map to underlying sources. Then verify which of the high-value integrations you actually need (typically EPSS + CISA KEV + an external enrichment provider) and confirm how credentials are configured for those upstream APIs.

A quick checklist when evaluating it for production: - Confirm which tool names exist and what inputs they expect (CVE IDs vs free-text). - Check rate-limiting/timeouts and how the server behaves when an upstream API fails. - Validate required credentials/secrets for each integration before wiring into an agent. - Inspect any caching strategy (if present) to keep latency and costs predictable.

Why it was picked: mukul975/cve-mcp-server is directly useful for a solo AI studio building Claude Code/MCP workflows: it delivers production-grade security intelligence tools as an MCP server (CVE lookup, EPSS, KEV, ATT&CK, Shodan, VirusTotal, etc.). It also has strong GitHub momentum (relative_trend 0.0224) and is far more “shipping-oriented” than generic Medium posts.