radar_ip_geocode

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

Geolocate an IP address to city/state/country and approximate coordinates using Radar. Omit ip to geolocate the caller. Example: radar_ip_geocode({ ip: “8.8.8.8”, apiKey: “prj_live_sk…” })

Parameters

NameTypeRequiredDescription
ipstringnoOptional IPv4/IPv6 address to geolocate, e.g. “8.8.8.8”. If omitted, Radar geolocates the request origin.
_apiKeystringyesRadar API key (a secret prj_live_sk_… key is required to pass an explicit ip)

Example call

Arguments

{
  "ip": "8.8.8.8",
  "_apiKey": "your-radar-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/radar/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"radar_ip_geocode","arguments":{"ip":"8.8.8.8","_apiKey":"your-radar-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('radar_ip_geocode', {
  "ip": "8.8.8.8",
  "_apiKey": "your-radar-api-key"
});

More examples

{
  "_apiKey": "your-radar-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026