circl_vuln_recent

Pack: circl-vulnerability-lookup · Endpoint: https://gateway.pipeworx.io/circl-vulnerability-lookup/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/circl_vuln_recent for the schema, then POST the same URL with its arguments for the data.

“What vulnerabilities were published recently” / “latest CVEs” / “new security advisories today” — the most recently published or updated vulnerability records across every feed CIRCL aggregates (MITRE CVE, NVD, GitHub advisories, PySec, vendor CSAF). Use for daily threat-intel sweeps and “what is new since yesterday” checks. Returns newest first with the normalised summary for each.

Parameters

NameTypeRequiredDescription
limitnumbernoNumber of recent records to return, 1-100. Default 20.

Example call

Arguments

{
  "limit": 3
}

curl

curl -X POST https://gateway.pipeworx.io/circl-vulnerability-lookup/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"circl_vuln_recent","arguments":{"limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('circl_vuln_recent', {
  "limit": 3
});

Connect

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

{
  "mcpServers": {
    "circl-vulnerability-lookup": {
      "url": "https://gateway.pipeworx.io/circl-vulnerability-lookup/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026