mcp-shodan

dns_lookup

Resolve domain names to IP addresses using Shodan's DNS service. Supports batch resolution of multiple hostnames in a single query. Returns IP addresses mapped to their corresponding hostnames.

Input Schema

NameRequiredDescriptionDefault
hostnamesYesList of hostnames to resolve.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "hostnames": { "description": "List of hostnames to resolve.", "items": { "type": "string" }, "type": "array" } }, "required": [ "hostnames" ], "type": "object" }