mcp-shodan
by BurtTheCoder
ip_lookup
Retrieve comprehensive information about an IP address, including geolocation, open ports, running services, SSL certificates, hostnames, and cloud provider details if available. Returns service banners and HTTP server information when present.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | The IP address to query. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ip": {
"description": "The IP address to query.",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}