get_carrier_info
Retrieve mobile carrier details for any IP address, including MCC and MNC codes, to identify network operators and their associated mobile networks.
Instructions
Get mobile carrier information for an IP address.
Args: ip: IP address to lookup
Returns: Mobile carrier details including MCC and MNC codes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}