get_ip_info
Retrieve detailed IP address information including geolocation, ASN data, company details, and privacy status for network analysis and intelligence gathering.
Instructions
Get comprehensive information about an IP address.
Args: ip: IP address to lookup. If None, returns info about current IP. ctx: MCP context
Returns: Complete IP information including location, ASN, company, privacy, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ip"
}
},
"required": [
"ip"
],
"type": "object"
}