get_cve

Pack: nvd · Endpoint: https://gateway.pipeworx.io/nvd/mcp

Get full details for a specific CVE (e.g., “CVE-2021-44228”). Returns description, severity, CVSS score, affected products, and remediation info. Use when you need comprehensive vulnerability analysis.

Parameters

NameTypeRequiredDescription
cve_idstringyesCVE identifier, e.g. “CVE-2021-44228”

Example call

Arguments

{
  "cve_id": "CVE-2021-44228"
}

curl

curl -X POST https://gateway.pipeworx.io/nvd/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_cve","arguments":{"cve_id":"CVE-2021-44228"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_cve', {
  "cve_id": "CVE-2021-44228"
});

Response shape

Always returns: id, published, last_modified, status, description, cvss_score, severity

FieldTypeDescription
idstringCVE identifier
publishedstringPublication date in ISO 8601 format
last_modifiedstringLast modification date in ISO 8601 format
statusstringVulnerability status
descriptionstringEnglish description of the vulnerability
cvss_scorenumber | nullCVSS base score (v3.1 preferred, falls back to v2)
severitystring | nullSeverity rating (CRITICAL, HIGH, MEDIUM, LOW, NONE)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "CVE identifier"
    },
    "published": {
      "type": "string",
      "description": "Publication date in ISO 8601 format"
    },
    "last_modified": {
      "type": "string",
      "description": "Last modification date in ISO 8601 format"
    },
    "status": {
      "type": "string",
      "description": "Vulnerability status"
    },
    "description": {
      "type": "string",
      "description": "English description of the vulnerability"
    },
    "cvss_score": {
      "type": [
        "number",
        "null"
      ],
      "description": "CVSS base score (v3.1 preferred, falls back to v2)"
    },
    "severity": {
      "type": [
        "string",
        "null"
      ],
      "description": "Severity rating (CRITICAL, HIGH, MEDIUM, LOW, NONE)"
    }
  },
  "required": [
    "id",
    "published",
    "last_modified",
    "status",
    "description",
    "cvss_score",
    "severity"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "nvd": {
      "url": "https://gateway.pipeworx.io/nvd/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026