mcp-shodan

cpe_lookup

Search for Common Platform Enumeration (CPE) entries by product name in Shodan's CVEDB. Supports pagination and can return either full CPE details or just the total count. Useful for identifying specific versions and configurations of software and hardware.

Input Schema

NameRequiredDescriptionDefault
countNoIf true, returns only the count of matching CPEs.
limitNoMaximum number of CPEs to return (max 1000).
productYesThe name of the product to search for CPEs.
skipNoNumber of CPEs to skip (for pagination).

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "count": { "default": false, "description": "If true, returns only the count of matching CPEs.", "type": "boolean" }, "limit": { "default": 1000, "description": "Maximum number of CPEs to return (max 1000).", "type": "number" }, "product": { "description": "The name of the product to search for CPEs.", "type": "string" }, "skip": { "default": 0, "description": "Number of CPEs to skip (for pagination).", "type": "number" } }, "required": [ "product" ], "type": "object" }