get_epss
Pack: epss · Endpoint: https://gateway.pipeworx.io/epss/mcp
EPSS exploit-probability for one or more CVEs. Returns each CVE’s EPSS score (0-1 = probability it will be exploited in the wild in the next 30 days) and percentile (how it ranks vs all CVEs). Use to gauge real-world exploit likelihood and prioritize patching — complements CVSS severity (a high-severity CVE with low EPSS may be lower urgency than a moderate-severity one with high EPSS).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cve | string | yes | A CVE id like “CVE-2021-44228”, or several comma-separated (e.g. “CVE-2021-44228,CVE-2014-0160”). |
Example call
Arguments
{
"cve": "CVE-2021-44228"
}
curl
curl -X POST https://gateway.pipeworx.io/epss/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_epss","arguments":{"cve":"CVE-2021-44228"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_epss', {
"cve": "CVE-2021-44228"
});
More examples
{
"cve": "CVE-2021-44228,CVE-2014-0160,CVE-2017-5645"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"epss": {
"url": "https://gateway.pipeworx.io/epss/mcp"
}
}
}
See Getting Started for client-specific install steps.