NVD CVE MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NVD CVE MCP ServerGet details for CVE-2025-13583"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
NVD CVE MCP Server
A Model Context Protocol (MCP) server for retrieving and displaying CVE vulnerability information from the National Vulnerability Database (NVD). Features dual data sources with NVD API and web scraping fallback.
โจ Features
๐ CVE Details Lookup: Retrieve complete vulnerability information by CVE ID
๐ Keyword Search: Search for CVE vulnerabilities by keywords
๐ Formatted Output: Display vulnerability information in elegant Markdown format
๐ Dual Data Sources: API-first approach with web scraping as fallback
๐ Multi-language Support: Full support for both English and Chinese
Related MCP server: cve-lookup-mcp
๐ฆ Installation
Prerequisites
Node.js >= 18.0.0
npm or yarn
Quick Start with npx (Recommended)
No installation required! Use directly with npx:
{
"mcpServers": {
"nvd-cve": {
"command": "npx",
"args": ["-y", "nvd-cve-mcp-server"]
}
}
}Global Installation
npm install -g nvd-cve-mcp-serverLocal Installation
npm install nvd-cve-mcp-server๐ Usage
1. Configure as MCP Server
Configure in Claude Desktop or other MCP-compatible applications:
macOS/Linux (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"nvd-cve": {
"command": "npx",
"args": ["-y", "nvd-cve-mcp-server"]
}
}
}Windows (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"nvd-cve": {
"command": "npx",
"args": ["-y", "nvd-cve-mcp-server"]
}
}
}2. Direct Execution
npm start๐ ๏ธ Available Tools
1. get_cve_details
Retrieve detailed information for a specific CVE.
Parameters:
cve_id(required): CVE ID in format CVE-YYYY-NNNNN
Example:
Get details for CVE-2025-13583Output Format:
# CVE-2025-13583
## ๐ Basic Information
- **CVE ID**: CVE-2025-13583
- **CVSS Score**: 9.8
- **Severity**: CRITICAL
- **Published**: 2025-11-23
- **Last Modified**: 2025-11-26
- **CWE Type**: CWE-89
## ๐ Description
[Detailed vulnerability description]
## ๐ References
1. [VulDB](https://vuldb.com/?id.333344)
2. [GitHub Issue](https://github.com/rassec2/dbcve/issues/6)
## ๐ Official Links
- [NVD Details](https://nvd.nist.gov/vuln/detail/CVE-2025-13583)
- [CVE Record](https://cve.org/CVERecord?id=CVE-2025-13583)2. search_cves
Search for CVE vulnerabilities by keyword.
Parameters:
keyword(required): Search keywordlimit(optional): Number of results to return (default: 10, max: 20)
Example:
Search for CVEs related to "SQL injection"
Search for "WordPress" vulnerabilities, limit to 5 resultsOutput Format:
# CVE Search Results: "SQL injection"
Found 10 related vulnerabilities
| CVE ID | Severity | CVSS | Published | Description |
|--------|----------|------|-----------|-------------|
| CVE-2025-13583 | CRITICAL | 9.8 | 2025-11-23 | A vulnerability has been found in code-projects... |
| CVE-2025-13582 | HIGH | 7.3 | 2025-11-23 | A vulnerability was found in code-projects... |๐ Usage Examples
Using with Claude
Query Specific CVE:
Please help me query CVE-2025-13583 detailsSearch Vulnerabilities:
Search for recent SQL injection vulnerabilitiesSearch by Product:
Find WordPress-related CVE vulnerabilities
๐ง Technical Architecture
Data Sources
NVD API (Primary)
Official REST API:
https://services.nvd.nist.gov/rest/json/cves/2.0Provides structured JSON data
Includes complete CVSS scores, CWE classifications, etc.
NVD Web (Fallback)
Web scraping when API is unavailable
Uses Cheerio for HTML parsing
Extracts key vulnerability information
Core Dependencies
@modelcontextprotocol/sdk: MCP protocol implementationaxios: HTTP clientcheerio: HTML parser
๐ Data Format
CVE Details Object
{
id: "CVE-2025-13583",
description: "Vulnerability description...",
cvssScore: 9.8,
severity: "CRITICAL",
published: "2025-11-23T10:15:03.000",
lastModified: "2025-11-26T12:39:31.000",
references: [
{
url: "https://example.com",
source: "VulDB"
}
],
cweId: "CWE-89",
source: "api" // or "web"
}โ ๏ธ Important Notes
API Rate Limits: NVD API has rate limits, please use responsibly
Network Requirements: Requires access to nvd.nist.gov
Data Freshness: CVE information is updated regularly, check for latest data
Format Validation: CVE ID must follow CVE-YYYY-NNNNN format
๐ Troubleshooting
Common Issues
API Timeout
Check network connection
System will automatically switch to web scraping mode
CVE Not Found
Verify CVE ID format is correct
Check if CVE has been published to NVD
No Search Results
Try using more general keywords
Check spelling
๐ Development
Project Structure
nvd-cve-mcp-server/
โโโ src/
โ โโโ index.js # Main server code
โโโ package.json # Project configuration
โโโ README.md # DocumentationLocal Development
# Development mode (auto-restart)
npm run dev
# Production mode
npm start๐ค Contributing
Issues and Pull Requests are welcome!
๐ License
MIT License
๐ฅ Author
SOCTeam.AI
๐ Related Links
Note: This tool is for security research and educational purposes only. Please comply with relevant laws, regulations, and ethical standards.
Available Tools
2 toolsget_cve_detailsA
ๆ นๆฎCVE ID่ทๅ่ฏฆ็ป็ๆผๆดไฟกๆฏ,ๅ ๆฌๆ่ฟฐใCVSS่ฏๅใไธฅ้็จๅบฆใๅ่้พๆฅ็ญ
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | CVE ID (ไพๅฆ: CVE-2025-13583) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It mentions the tool retrieves details but does not confirm it is a read-only operation, specify any authentication needs, rate limits, or describe the response structure. This is insufficient for a tool with no annotation safety net.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that conveys the essential purpose and return content without any unnecessary words. It is highly efficient for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one required parameter, no output schema), the description covers the core functionality and expected results. However, it lacks usage guidance and behavioral details, which slightly limits completeness for an agent unfamiliar with the context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers the single parameter 'cve_id' with a regex pattern and description. The tool description adds semantic value by listing the types of details returned (description, CVSS score, severity, reference links), which enriches the agent's understanding of the output beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves detailed vulnerability information by CVE ID, including description, CVSS score, severity, and reference links. This specific verb-resource combination ('get' + 'cve_details') and the explicit listing of return fields distinguish it from the sibling 'search_cves' tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage via the input requirement ('ๆ นๆฎCVE ID'), but does not explicitly state when to use this tool versus the sibling 'search_cves', nor does it provide any exclusions or prerequisites. Guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_cvesA
ๆ นๆฎๅ ณ้ฎๅญๆ็ดขCVEๆผๆด,ๆฏๆๆ็ดขๆผๆดๆ่ฟฐใไบงๅๅ็งฐใไพๅบๅ็ญ
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | ๆ็ดขๅ ณ้ฎๅญ (ไพๅฆ: SQL injection, WordPress, Apache) | |
| limit | No | ่ฟๅ็ปๆๆฐ้้ๅถ (้ป่ฎค: 10, ๆๅคง: 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses that the search covers multiple fields, but lacks details on behavior like result ordering, matching logic, rate limits, or handling of empty results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently captures the tool's purpose and scope. It is front-loaded and concise, though slightly more structure could improve readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only two parameters and no output schema, the description adequately covers the key aspects. It explains what the tool does and what it searches, but lacks details on return format or behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the description adds value by specifying which fields (description, product name, vendor) are searched, which is not evident from the parameter definitions alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches CVE vulnerabilities by keyword and specifies the fields it supports (description, product name, vendor). It distinguishes from the sibling tool get_cve_details, which provides details for a specific CVE.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for broad searches but does not explicitly state when to use it versus the sibling tool or provide alternative scenarios. No exclusions or conditions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v1.0.2- First observed
get_cve_details - First observed
search_cves
TDQS
Scored across 2 tools
Each tool has a clearly distinct purpose: one retrieves details by specific CVE ID, the other searches by keywords. No overlap or ambiguity.
Both tools follow a consistent verb_noun pattern (get_cve_details, search_cves), making them predictable and easy to understand.
With only 2 tools, the set is minimal but covers basic discovery and retrieval. For a narrow CVE lookup server, it is justifiable, but feels thin for broader use.
Missing essential operations like listing recent CVEs or filtering by severity/date. Search covers some discovery but lacks a way to browse all entries, creating notable gaps.
Related MCP Connectors
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
CVE lookup via NIST NVD, CISA KEV, EPSS, and MITRE ATT&CK. 7 tools.
Defensive vulnerability intelligence search across public CVE/NVD and GitHub advisory APIs with CVSS
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables searching the NIST NVD for CVEs, retrieving full CVE details, checking software for known vulnerabilities, and searching the CPE database.MIT
- AlicenseAqualityDmaintenanceProvides live CVE data from NVD and EPSS without API key, enabling AI assistants to look up CVSS scores, search vulnerabilities, and check product CVEs.3MIT
- FlicenseNot gradedqualityDmaintenanceEnables CVE vulnerability lookup and search using the National Vulnerability Database (NVD), allowing users to retrieve detailed information about specific CVEs and search for vulnerabilities by keyword.-
- AlicenseNot gradedqualityAmaintenanceSearch and audit CVEs by keyword, severity, CWE, CISA KEV status, and CPE via the NIST National Vulnerability Database.139 npm1Apache 2.0