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

@iflow-mcp/cyreslab-circl-cve-search-mcp-server

v2.1.0

Published

MCP server for accessing CIRCL CVE SEARCH API - search CVE data, vulnerabilities, 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/