CVE Intelligence MCP Server

CVE Intelligence MCP Server

Provides multi-source vulnerability intelligence for AI-powered security operations, combining NVD CVSS, CISA KEV, and EPSS scores without requiring an API key.

Category
访问服务器

README

🛡️ MCP Server: CVE Intelligence

A Model Context Protocol (MCP) server that provides multi-source vulnerability intelligence for AI-powered security operations. Combines three free, authoritative data sources into a single unified interface — no API key required.

"Should I panic about this CVE?" — This server answers that question.

Why This Server?

Most CVE tools give you just a CVSS score. But security teams need to know:

  • How severe is it? → CVSS score (from NVD)
  • Is it being exploited RIGHT NOW? → CISA KEV catalog
  • How LIKELY is exploitation? → EPSS probability score

This server combines all three into a single risk verdict.

┌─────────────────────────────────────────────────────────┐
│           mcp-server-cve-intel                           │
│                                                          │
│  ┌─────────────┐  ┌──────────────┐  ┌───────────────┐  │
│  │ NVD (NIST)  │  │ CISA KEV     │  │  EPSS         │  │
│  │ CVE details │  │ Known        │  │  Exploit      │  │
│  │ CVSS scores │  │ Exploited    │  │  Prediction   │  │
│  │ References  │  │ Vulns catalog│  │  Probability  │  │
│  └──────┬──────┘  └──────┬───────┘  └───────┬───────┘  │
│         └────────────────┼──────────────────┘           │
│                          ▼                               │
│              🎯 UNIFIED RISK VERDICT                     │
│   "CVE-2021-44228: CVSS 10.0, ACTIVELY EXPLOITED,      │
│    97.5% chance of exploitation → 🚨 PATCH NOW"         │
└─────────────────────────────────────────────────────────┘

Features

  • 🔍 CVE Lookup — Full intelligence report from 3 sources for any CVE
  • 🔎 CVE Search — Search vulnerabilities by keyword (product, vendor, type)
  • 🚨 CISA KEV Feed — Latest actively exploited vulnerabilities
  • 📊 EPSS Scores — Exploit probability predictions (next 30 days)
  • 🎯 Risk Verdicts — Automated risk scoring combining all factors
  • 🆓 No API Key Required — All data sources are free and public
  • 🏠 Local + Remote — Supports both stdio and SSE transport

Quick Start

1. Install

git clone https://github.com/gopichand458/mcp-server-cve-intel.git
cd mcp-server-cve-intel
pip install -r requirements.txt

2. Run Local (for Claude Desktop)

python server.py

Add to your claude_desktop_config.json:

{
    "mcpServers": {
        "cve-intel": {
            "command": "python",
            "args": ["/FULL/PATH/TO/mcp-server-cve-intel/server.py"]
        }
    }
}

3. Run Remote (shareable SSE server)

python server.py --remote
# → Available at http://localhost:8000/sse

Optional: NVD API Key (for higher rate limits)

The server works without an API key, but NVD limits unauthenticated requests to 5 per 30 seconds. Get a free key for 50 requests/30 sec:

# Request key at: https://nvd.nist.gov/developers/request-an-api-key
export NVD_API_KEY="your-key-here"
python server.py

Tools

cve_lookup — Full CVE Intelligence Report

Get comprehensive intelligence for a specific CVE combining all 3 sources.

Input:  cve_lookup(cve_id="CVE-2021-44228")

Output: {
  "cve_id": "CVE-2021-44228",
  "description": "Apache Log4j2 <=2.14.1 JNDI features...",
  "cvss_score": 10.0,
  "severity": "CRITICAL",
  "epss": {
    "score_percent": "97.5%",
    "interpretation": "🔴 CRITICAL — Very high probability of exploitation"
  },
  "cisa_kev": {
    "in_kev_catalog": true,
    "actively_exploited": true,
    "known_ransomware_use": "Known"
  },
  "risk_verdict": {
    "overall": "🚨 CRITICAL — Immediate action required. Patch NOW.",
    "risk_score": "100/100",
    "risk_factors": [
      "🔴 CVSS Critical (9.0+)",
      "🔴 ACTIVELY EXPLOITED (in CISA KEV)",
      "🔴 USED IN RANSOMWARE CAMPAIGNS",
      "🔴 EPSS 97.5% — Very likely to be exploited"
    ]
  }
}

cve_search — Search by Keyword

Input:  cve_search(keyword="Microsoft Exchange", limit=5)
Output: List of matching CVEs with CVSS scores and severity

cve_recent_kev — Actively Exploited Vulnerabilities

Input:  cve_recent_kev(limit=10)
Output: Latest additions to CISA's Known Exploited Vulnerabilities catalog

cve_epss_score — Exploit Probability

Input:  cve_epss_score(cve_id="CVE-2024-3094")
Output: EPSS score with probability and percentile interpretation

Resources

URI Description
cve-intel://about Server info and data source details
cve-intel://severity-guide CVSS/EPSS/KEV interpretation guide

Prompts

Prompt Description
vulnerability_assessment Guided CVE assessment workflow
threat_briefing Current threat landscape briefing

Example Conversations

After connecting to Claude Desktop:

You: "Tell me about CVE-2024-3094"

Claude: calls cve_lookup → Provides full report with CVSS, EPSS, exploitation status, and risk verdict

You: "What's being actively exploited right now?"

Claude: calls cve_recent_kev → Lists latest CISA KEV additions with remediation guidance

You: "Find vulnerabilities in Apache Struts and tell me which to patch first"

Claude: calls cve_search + cve_epss_score → Searches, ranks by EPSS, recommends priority

Data Sources

Source What It Provides Rate Limit Auth
NVD (NIST) CVE details, CVSS scores, CWEs, references 5 req/30s (free), 50/30s (with key) Optional
CISA KEV Actively exploited CVEs, remediation deadlines Unlimited None
EPSS (FIRST.org) Exploit probability (0-100%) for next 30 days Unlimited None

Compatibility

Client Supported
Claude Desktop ✅ (stdio)
Claude Code
Cursor
VS Code + Copilot
Any MCP client

Project Structure

mcp-server-cve-intel/
├── server.py           # MCP server — tools, resources, prompts
├── cve_client.py       # Multi-source CVE intelligence client
├── requirements.txt    # Dependencies
├── LICENSE             # MIT License
├── .gitignore
└── README.md           # This file

Contributing

Contributions welcome! Some ideas:

  • Add more data sources (OSV, GitHub Security Advisories)
  • Add caching for CISA KEV (it's a large JSON file)
  • Add a cve_compare tool for side-by-side comparison
  • Docker support
  • PyPI packaging

Author

GKonakalagithub.com/gopichand458

License

MIT License — see LICENSE for details.

Disclaimer

Disclaimer

This product uses the NVD API but is not endorsed or certified by the NVD.

This tool aggregates publicly available vulnerability data for security research and operational purposes. It is not affiliated with NIST, CISA, or FIRST.org. Always verify critical findings through official sources.


Built with Model Context Protocol by Anthropic

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选