mcp-shodan

reverse_dns_lookup

Perform reverse DNS lookups to find hostnames associated with IP addresses. Supports batch lookups of multiple IP addresses in a single query. Returns all known hostnames for each IP address, with clear indication when no hostnames are found.

Input Schema

NameRequiredDescriptionDefault
ipsYesList of IP addresses to perform reverse DNS lookup on.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "ips": { "description": "List of IP addresses to perform reverse DNS lookup on.", "items": { "type": "string" }, "type": "array" } }, "required": [ "ips" ], "type": "object" }