Sponsored by Deepsite.site

🛡️ EUVDB MCP Server

Created By
etxahun6 months ago
Python MCP server that allows interacting with the public ENISA vulnerability API (EUVDB) via the MCP (Model Context Protocol).
Content

🛡️ EUVDB MCP Server

MCP Server in Python to interact with the ENISA EUVDB Public Vulnerability API, using the Model Context Protocol (MCP).

This server exposes query tools that can be invoked from MCP-compatible AI assistants like Claude Desktop or Visual Studio Code (VSCode).

📁 Project Structure

euvdb-mcp-server/
├── Dockerfile # Dockerfile to build the Docker image of the project
├── LICENSE # Project license
├── README.md # Project documentation
├── server.py # MCP server with tools to query the ENISA API
└── pyproject.toml # (optional, if using uv as package manager)

🚀 Getting Started

1. Clone the repository

git clone https://github.com/etxahun/euvdb-mcp-server.git
cd euvdb-mcp-server

2. Create virtual environment and install dependencies

Requirements: Python 3.10 or higher, and uv as environment manager (optional but recommended).

# Install uv if not already available
curl -LsSf https://astral.sh/uv/install.sh | sh

# Initialize virtual environment
uv venv
source .venv/bin/activate

# Install dependencies
uv add "mcp[cli]" httpx

3. Run the MCP server

  • Option A: Run locally

    uv run server.py
    
  • Option B: From WSL (Windows Subsystem for Linux)

    wsl bash -c 'cd /path/to/euvdb-mcp-server && /home/<user>/.local/bin/uv run server.py'
    

🧪 Test locally with Docker

Run the following commands from the terminal:

docker build -t mcp-euvdb .
docker run --rm mcp-euvdb

⚙️ Integration with Claude in VSCode

  1. Open VSCode and ensure the Claude AI Assistant extension is installed.
  • Note: If you are using "Claude Desktop", installing the extension is not necessary.
  1. Open settings.json (Ctrl+Shift+P → "Preferences: Open Settings (JSON)").

  2. Add the following:

"mcp": {
    "servers": {
        "euvdb": {
            "command": "wsl.exe",
            "args": [
                "bash",
                "-c",
                "cd /home/<user>/path/to/project/euvdb-mcp-server && /home/<user>/.local/bin/uv run server.py"
            ]
        }
     }
}

If the Docker image mcp-euvdb has already been built, you can configure VSCode to use it directly by modifying the settings.json file as follows:

"mcp": {
    "servers": {
        "euvdb": {
           "command": "wsl.exe",
           "args": [
               "docker",
               "run",
               "--rm",
               "-i",
               "mcp-euvdb"
           ]
        }
     }
}

🧪 Available Tools

The MCP server exposes the following tools:

ToolDescripction
get_last_vulnerabilities()Latest published vulnerabilities (max 8)
get_exploited_vulnerabilities()Recently exploited vulnerabilities (max 8)
get_critical_vulnerabilities()Latest critical vulnerabilities (max 8)
get_vulnerability_by_id(id)Query a vulnerability by CVE ID (e.g., CVE-2024-0864)
get_enisaid(id)Query by ENISA ID (e.g., EUVD-2024-45012)
get_advisory(id)Fetch advisory by ID (e.g., cisco-sa-ata19x-...)
query_vulnerabilities(...)Advanced query with filters (score, EPSS, date, product, etc.)

💬 Prompt Examples

  • “Query the latest critical vulnerabilities using euvdb.”
  • “Look up vulnerability CVE-2024-0864.”
  • “Filter vulnerabilities with score > 9 since January 2024.”
  • “Show recent advisories related to CISCO.”

📄 License

This project is licensed under Apache-2.0.

🤝 Credits

This server interacts with the ENISA EUVDB Public Vulnerability API, which is open and does not require authentication.

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Amap Maps高德地图官方 MCP Server
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
CursorThe AI Code Editor
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Tavily Mcp
WindsurfThe new purpose-built IDE to harness magic
ChatWiseThe second fastest AI chatbot™
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Serper MCP ServerA Serper MCP Server
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Playwright McpPlaywright MCP server
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
DeepChatYour AI Partner on Desktop
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code