CVE MCP Server

v1.0.0Securitystable

This MCP server transforms Claude into a comprehensive security analyst by providing access to 27 security tools across 21 APIs for vulnerability intelligence. It enables users to query multiple sources like NVD, EPSS, CISA KEV, and threat intelligen

cisa-kevclaude-aicvecybersecuritydevsecops
Share:
572
Stars
0
Downloads
0
Weekly
0/5

What is CVE MCP Server?

CVE MCP Server is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to this mcp server transforms claude into a comprehensive security analyst by providing access to 27 security tools across 21 apis for vulnerability intelligence. it enables users to query multiple sourc...

This MCP server transforms Claude into a comprehensive security analyst by providing access to 27 security tools across 21 APIs for vulnerability intelligence. It enables users to query multiple sources like NVD, EPSS, CISA KEV, and threat intelligen

This server falls under the Security category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • This MCP server transforms Claude into a comprehensive secur

Use Cases

27 security analysis tools
Vulnerability intelligence across 21 APIs
CISA, EPSS, and NVD integration
mukul975

Maintainer

LicenseApache 2.0
Languagepython
Versionv1.0.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx cve-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use CVE MCP Server

CVE MCP Server is a production-grade security intelligence platform that transforms Claude into a comprehensive vulnerability analyst by exposing 27 tools across 21 data sources including NVD, EPSS, CISA KEV, MITRE ATT&CK, Shodan, VirusTotal, and more. It supports the full security workflow from CVE lookup and exploit discovery to composite risk scoring, IP reputation checks, dependency scanning, and ransomware tracking. Security engineers and DevSecOps teams use it to rapidly triage vulnerabilities, prioritize patching, and investigate suspicious IPs or malware without switching between dozens of separate dashboards.

Prerequisites

  • Python 3.9+ with pip and venv support
  • Git to clone the repository
  • NVD API key (free at nvd.nist.gov) for higher rate limits — 8 tools work without any key
  • Optional: GitHub token, VirusTotal key, Shodan key, AbuseIPDB key for full capability
  • Claude Desktop or another MCP-compatible client
1

Clone the repository

Clone the CVE MCP Server repository from GitHub to your local machine.

git clone https://github.com/mukul975/cve-mcp-server.git
cd cve-mcp-server
2

Create and activate a virtual environment

Set up an isolated Python environment to avoid dependency conflicts.

python -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate
3

Install the package

Install the CVE MCP Server and all its dependencies in editable mode.

pip install -e .
4

Obtain API keys (recommended)

Register for free API keys to unlock the full 27-tool suite. NVD key (nvd.nist.gov) increases rate limits from 5 to 50 requests per 30 seconds. GitHub token raises limits from 60 to 5,000 requests per hour. VirusTotal, Shodan, AbuseIPDB, and GreyNoise all have free community tiers.

5

Configure Claude Desktop

Add the server to your Claude Desktop configuration file. On macOS the config is at ~/Library/Application Support/Claude/claude_desktop_config.json. Use the absolute path to your cloned repository.

{
  "mcpServers": {
    "cve-mcp": {
      "command": "python",
      "args": ["-m", "cve_mcp.server"],
      "cwd": "/absolute/path/to/cve-mcp-server",
      "env": {
        "NVD_API_KEY": "your-nvd-api-key",
        "GITHUB_TOKEN": "ghp_xxxxxxxxxxxxxxxxxxxx",
        "VIRUSTOTAL_KEY": "your-virustotal-key",
        "ABUSEIPDB_KEY": "your-abuseipdb-key",
        "GREYNOISE_API_KEY": "your-greynoise-key",
        "SHODAN_KEY": "your-shodan-key"
      }
    }
  }
}
6

Restart Claude Desktop and verify

Fully quit and reopen Claude Desktop so it picks up the new MCP server configuration. You should see the CVE MCP tools available in Claude's tool panel.

CVE MCP Server Examples

Client configuration

Complete Claude Desktop JSON config block for CVE MCP Server with the most useful API keys.

{
  "mcpServers": {
    "cve-mcp": {
      "command": "python",
      "args": ["-m", "cve_mcp.server"],
      "cwd": "/absolute/path/to/cve-mcp-server",
      "env": {
        "NVD_API_KEY": "your-nvd-api-key",
        "GITHUB_TOKEN": "ghp_xxxxxxxxxxxxxxxxxxxx",
        "VIRUSTOTAL_KEY": "your-virustotal-key",
        "SHODAN_KEY": "your-shodan-key"
      }
    }
  }
}

Prompts to try

Sample prompts that exercise the CVE MCP Server's security intelligence tools.

- "Analyze CVE-2021-44228 (Log4Shell) — give me the CVSS score, EPSS exploitation probability, CISA KEV status, and composite risk score"
- "Scan these dependencies for vulnerabilities: requests==2.28.0, django==3.2.0, pillow==9.0.0"
- "Investigate IP 45.33.32.156 — check abuse history, GreyNoise noise status, Shodan open ports, and VirusTotal reputation"
- "List the top 10 trending CVEs this week and prioritize them by exploit availability"
- "Generate an executive risk report for these CVEs: CVE-2024-3094, CVE-2024-21762, CVE-2023-46805"

Troubleshooting CVE MCP Server

Claude Desktop shows 'server not found' or the tools don't appear

Verify the 'cwd' path in the config is an absolute path to the cloned repository, and that the virtual environment's Python is being used. Run 'python -m cve_mcp.server' manually in the repo directory to confirm it starts without errors.

NVD requests are throttled or return 403 errors

Without NVD_API_KEY set, you are limited to 5 requests per 30 seconds. Obtain a free API key at nvd.nist.gov/developers/request-an-api-key and add it to the env block in your config.

Some tools return empty results or API errors

Each tool group requires its own API key. Check that the relevant key (e.g. SHODAN_KEY for shodan_host_lookup, VIRUSTOTAL_KEY for virustotal_lookup) is present in the env config. Eight core tools (EPSS, CISA KEV, CWE, NVD) work without any keys.

Frequently Asked Questions about CVE MCP Server

What is CVE MCP Server?

CVE MCP Server is a Model Context Protocol (MCP) server that this mcp server transforms claude into a comprehensive security analyst by providing access to 27 security tools across 21 apis for vulnerability intelligence. it enables users to query multiple sources like nvd, epss, cisa kev, and threat intelligen It connects AI assistants to external tools and data sources through a standardized interface.

How do I install CVE MCP Server?

Follow the installation instructions on the CVE MCP Server GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with CVE MCP Server?

CVE MCP Server works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is CVE MCP Server free to use?

Yes, CVE MCP Server is open source and available under the Apache 2.0 license. You can use it freely in both personal and commercial projects.

CVE MCP Server Alternatives — Similar Security Servers

Looking for alternatives to CVE MCP Server? Here are other popular security servers you can use with Claude, Cursor, and VS Code.

Casdoor

13.6k

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD

ghidraMCP

9.0k

An Model Context Protocol server that enables LLMs to autonomously reverse engineer applications by exposing Ghidra's decompilation and analysis tools. It allows AI agents to list code structures, rename methods, and analyze binaries directly through

HexStrike AI

8.9k

HexStrike AI MCP Agents is an advanced MCP server that lets AI agents (Claude, GPT, Copilot, etc.) autonomously run 150+ cybersecurity tools for automated pentesting, vulnerability discovery, bug bounty automation, and security research. Seamlessly b

IDA Pro MCP

8.7k

Enables AI-assisted reverse engineering in IDA Pro by providing tools to analyze binaries, decompile functions, manage comments, search patterns, and interact with the IDA database through natural language.

Anthropic Cybersecurity Skills

6.6k

754 structured cybersecurity skills for AI agents · Mapped to 5 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND & NIST AI RMF · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platform

Hooker

5.1k

🔥🔥 hooker is a Frida-based reverse engineering toolkit for Android. It offers a user-friendly CLI, universal scripts, auto hook generation, memory roaming to detect activities/services, one-click SOCKS5 proxy setup, Frida JustTrustMe, and BoringSSL u

Browse More Security MCP Servers

Explore all security servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "cve-mcp-server": { "command": "npx", "args": ["-y", "cve-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use CVE MCP Server?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides