{
  "info": {
    "name": "IP2Location.io — mcp.ai",
    "description": "REST API for the IP2Location.io MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/ip2location_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "ip2location_io_bulk_ip_geolocation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/ip/geolocation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "ip",
            "geolocation"
          ]
        },
        "description": "Tool to retrieve geolocation information for multiple IP addresses in bulk. Use when processing up to 1000 IPs at once.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"format\": \"\",\n  \"ip_list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ip2location_io_domain_whois",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/domain/whois",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "domain",
            "whois"
          ]
        },
        "description": "Tool to retrieve WHOIS information for a given domain. Use when you need domain registration and contact details via IP2WHOIS API.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"domain\": \"\",\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ip2location_io_get_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "key"
          ]
        },
        "description": "Tool to retrieve the configured API key. Use when authentication is needed for IP2Location.io requests.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ip2location_io_get_ip_geolocation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ip/geolocation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ip",
            "geolocation"
          ]
        },
        "description": "Tool to retrieve comprehensive geolocation data for an IPv4 or IPv6 address. Returns location details including country, region, city, coordinates, timezone, ISP, ASN, and proxy information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\",\n  \"lang\": \"\",\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ip2location_io_ip2_whois_hosted_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ip2/whois/hosted/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ip2",
            "whois",
            "hosted",
            "domain"
          ]
        },
        "description": "Tool to retrieve hosted domain names by IP address. Use when you need to list domains hosted on a given IP. Call after confirming the IP.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\",\n  \"page\": 0,\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}