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
| Name | Type | Required | Description |
|---|---|---|---|
cve_id | string | yes | CVE 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
| Field | Type | Description |
|---|---|---|
id | string | CVE identifier |
published | string | Publication date in ISO 8601 format |
last_modified | string | Last modification date in ISO 8601 format |
status | string | Vulnerability status |
description | string | English description of the vulnerability |
cvss_score | number | null | CVSS base score (v3.1 preferred, falls back to v2) |
severity | string | null | Severity 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.