npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

euvd-enisa-mcp

v1.0.6

Published

MCP server for accessing EUVD (European Vulnerability Database) and ENISA security data

Downloads

21

Readme

EUVD ENISA MCP

This project provides an MCP (Model Context Protocol) server implementation related to EUVD (European Vulnerability Database) and ENISA (European Union Agency for Cybersecurity) data.

Overview

The MCP server offers tools to query and retrieve vulnerability data, advisories, and related security information. It is designed to facilitate integration with security tools and services by providing structured access to vulnerability information.

Project Structure

  • src/ - Source code directory containing the main server and related modules.
  • .github/workflows/ci.yml - GitHub Actions workflow for continuous integration.
  • package.json - Project manifest with dependencies and scripts.
  • tsconfig.json - TypeScript configuration.
  • vitest.config.ts - Configuration for Vitest testing framework.
  • .eslintrc.cjs - ESLint configuration.
  • LICENSE - Project license.

Getting Started

Prerequisites

  • Node.js (version 16 or higher recommended)
  • npm or yarn package manager

Installation

You can use the EUVD ENISA MCP server in two ways:

Option 1: Direct npx execution (recommended)

The easiest way to use the EUVD ENISA MCP server is with npx:

npx -y euvd-enisa-mcp

This will download and run the server without requiring installation.

Option 2: Global installation

npm install -g euvd-enisa-mcp
euvd-enisa-mcp

MCP Client Configuration

To configure an MCP client to use this server, add the following to your MCP configuration:

"mcp": {
  "servers": {
    "euvd-enisa-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "euvd-enisa-mcp"]
    }
  }
}

This configuration allows MCP clients to automatically start and communicate with the EUVD ENISA MCP server.

Running Tests

npm run test

Runs the test suite using Vitest.

Usage

The MCP server exposes various tools to query vulnerability data from the EUVD API. These tools can be used by MCP clients to access vulnerability information.

Available Tools

| Tool Name | Description | Parameters | |-----------|-------------|------------| | get_last_vulnerabilities | Retrieves the latest vulnerabilities | None | | get_exploited_vulnerabilities | Retrieves vulnerabilities that are being actively exploited | None | | get_critical_vulnerabilities | Retrieves vulnerabilities with critical severity | None | | search_vulnerabilities | Searches for vulnerabilities based on various criteria | fromScore, toScore, fromEpss, toEpss, fromDate, toDate, product, vendor, assigner, exploited, page, text, size | | get_euvd_by_id | Gets detailed information about a vulnerability by its EUVD ID | id (required) | | get_advisory_by_id | Gets an advisory by its ID | id (required) |

Example Usage with an MCP Client

// Example of using the EUVD ENISA MCP server with an MCP client
const result = await mcpClient.useTool("euvd-enisa-mcp", "search_vulnerabilities", {
  fromScore: 7.0,
  toScore: 10.0,
  product: "windows",
  vendor: "microsoft"
});

console.log(result);

For more detailed information about the API endpoints and response formats, refer to the [EUVD API documentation](https://euvdservices.enisa.europa.eu/api).

## Contributing

Contributions are welcome. Please open issues or pull requests for bug fixes, features, or improvements.

## License

This project is licensed under the terms of the MIT License. See the [LICENSE](LICENSE) file for details.