geoip

Pack: hackertarget · Endpoint: https://gateway.pipeworx.io/hackertarget/mcp

“Where is [IP] located” / “what country is this address in” / “geolocate an IP” — IP geolocation via HackerTarget, returning country, state/region, city and coordinates for an address. City-level accuracy is approximate and a VPN or CDN address reports its datacenter, not its user. Use for coarse traffic attribution, never to locate a person.

Example call

Arguments

{
  "target": "8.8.8.8"
}

curl

curl -X POST https://gateway.pipeworx.io/hackertarget/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geoip","arguments":{"target":"8.8.8.8"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('geoip', {
  "target": "8.8.8.8"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hackertarget": {
      "url": "https://gateway.pipeworx.io/hackertarget/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 16, 2026