recent_cves

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

Get CVEs published within a date range (use ISO 8601 format, e.g., “2024-01-01T00:00:00.000Z”). Returns CVE IDs, descriptions, and severity. Use to track newly disclosed vulnerabilities.

Parameters

NameTypeRequiredDescription
startstringyesStart date in ISO 8601 format (e.g. “2024-01-01T00:00:00.000Z”)
endstringyesEnd date in ISO 8601 format (e.g. “2024-01-31T23:59:59.000Z”)
limitnumbernoMaximum number of results to return (default 10, max 2000)

Example call

Arguments

{
  "start": "2024-01-01T00:00:00.000Z",
  "end": "2024-01-31T23:59:59.000Z"
}

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":"recent_cves","arguments":{"start":"2024-01-01T00:00:00.000Z","end":"2024-01-31T23:59:59.000Z"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent_cves', {
  "start": "2024-01-01T00:00:00.000Z",
  "end": "2024-01-31T23:59:59.000Z"
});

More examples

{
  "start": "2024-12-01T00:00:00.000Z",
  "end": "2024-12-15T23:59:59.000Z",
  "limit": 100
}

Response shape

Always returns: total_results, returned, cves

FieldTypeDescription
total_resultsnumberTotal number of CVEs published in the date range
returnednumberNumber of CVEs returned in this response
cvesarrayList of CVEs published within the date range
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total_results": {
      "type": "number",
      "description": "Total number of CVEs published in the date range"
    },
    "returned": {
      "type": "number",
      "description": "Number of CVEs returned in this response"
    },
    "cves": {
      "type": "array",
      "description": "List of CVEs published within the date range",
      "items": {
        "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"
        ]
      }
    }
  },
  "required": [
    "total_results",
    "returned",
    "cves"
  ]
}

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