mcp-shodan
by BurtTheCoder
cve_lookup
Query detailed vulnerability information from Shodan's CVEDB. Returns comprehensive CVE details including CVSS scores (v2/v3), EPSS probability and ranking, KEV status, proposed mitigations, ransomware associations, and affected products (CPEs).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cve | Yes | The CVE identifier to query (format: CVE-YYYY-NNNNN). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cve": {
"description": "The CVE identifier to query (format: CVE-YYYY-NNNNN).",
"pattern": "^CVE-\\d{4}-\\d{4,}$",
"type": "string"
}
},
"required": [
"cve"
],
"type": "object"
}