CIRCL CVE SEARCH MCP Server
A Model Context Protocol (MCP) server for accessing the CIRCL CVE SEARCH API, providing comprehensive vulnerability and security information.
README
CIRCL CVE SEARCH MCP Server
A Model Context Protocol (MCP) server for accessing the CIRCL CVE SEARCH API, providing comprehensive vulnerability and security information.
Features
This MCP server provides reliable tools to access:
- CVE Information: Get detailed information about specific Common Vulnerabilities and Exposures
- Vendor Browsing: Browse CVEs by vendor name to discover security issues in specific vendors' products
- CWE Information: Get Common Weakness Enumeration information for understanding vulnerability types
- CAPEC Information: Get Common Attack Pattern Enumeration and Classification data for understanding attack methods
Key Improvements
- Retry Logic: Automatic retry with exponential backoff for reliable API calls
- Enhanced Formatting: Structured, readable response formatting with key information highlighted
- Better Error Handling: Clear, actionable error messages with troubleshooting guidance
- Input Validation: Comprehensive validation and sanitization of all inputs
Installation
npm install @cyreslab/circl-cve-search-mcp-server
Usage
Add this server to your MCP client configuration:
{
"mcpServers": {
"circl-cve-search": {
"command": "npx",
"args": ["@cyreslab/circl-cve-search-mcp-server"]
}
}
}
Available Tools
get_cve
Get detailed information about a specific CVE by its ID.
Parameters:
cve_id(required): CVE identifier (e.g., "CVE-2021-44228")
Example:
{
"name": "get_cve",
"arguments": {
"cve_id": "CVE-2021-44228"
}
}
Response Format:
- Structured CVE data with key information highlighted
- Summary, publication dates, CVSS scores
- Associated weakness types (CWE) and reference counts
- Full raw data for detailed analysis
browse_vendor
Browse CVEs by vendor name to discover security issues in specific vendors' products.
Parameters:
vendor(required): Vendor name (e.g., "apache", "microsoft", "google")limit(optional): Number of results to return (default: 10, max: 50)
Example:
{
"name": "browse_vendor",
"arguments": {
"vendor": "apache",
"limit": 15
}
}
Response Format:
- List of CVEs for the specified vendor
- Total count and displayed count
- Vendor name normalization
get_cwe
Get Common Weakness Enumeration (CWE) information by ID.
Parameters:
cwe_id(required): CWE identifier (e.g., "CWE-79", "CWE-89")
Example:
{
"name": "get_cwe",
"arguments": {
"cwe_id": "CWE-79"
}
}
Response Format:
- CWE name and detailed description
- Extended descriptions and weakness ordinalities
- Likelihood of exploit information
- Full raw data for comprehensive analysis
get_capec
Get Common Attack Pattern Enumeration and Classification (CAPEC) information by ID.
Parameters:
capec_id(required): CAPEC identifier (e.g., "CAPEC-66", "CAPEC-89")
Example:
{
"name": "get_capec",
"arguments": {
"capec_id": "CAPEC-66"
}
}
Response Format:
- Attack pattern name and description
- Typical severity and likelihood of attack
- Prerequisites and related weaknesses
- Complete raw data for in-depth analysis
Data Source
This server uses the CIRCL CVE SEARCH API, which provides:
- Comprehensive CVE data from the National Vulnerability Database (NVD)
- Common Platform Enumeration (CPE) information
- Common Weakness Enumeration (CWE) data
- Common Attack Pattern Enumeration and Classification (CAPEC) data
- Regular updates with the latest vulnerability information
Rate Limiting
The CIRCL CVE SEARCH API is free to use and doesn't require authentication. However, please use it responsibly and avoid making excessive requests that could impact the service.
Error Handling
The server handles various error conditions:
- Invalid CVE/CWE/CAPEC ID formats
- Empty search queries
- API rate limiting
- Network errors
- Invalid parameters
Development
Building
npm run build
Running in Development
npm run dev
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Support
For issues and questions:
- GitHub Issues: Report an issue
- CIRCL CVE SEARCH API Documentation: https://cve.circl.lu/api/
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.