radar_reverse_geocode

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

Reverse geocode coordinates to an address using Radar. Returns the formatted address for a lat/lng. Example: radar_reverse_geocode({ lat: 40.70390, lon: -73.98670, apiKey: “prj_live_sk…” })

Parameters

NameTypeRequiredDescription
latnumberyesLatitude, e.g. 40.70390
lonnumberyesLongitude, e.g. -73.98670
_apiKeystringyesRadar API key (get one free at radar.com)

Example call

Arguments

{
  "lat": 40.7039,
  "lon": -73.9867,
  "_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_reverse_geocode","arguments":{"lat":40.7039,"lon":-73.9867,"_apiKey":"your-radar-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('radar_reverse_geocode', {
  "lat": 40.7039,
  "lon": -73.9867,
  "_apiKey": "your-radar-api-key"
});

More examples

{
  "lat": 37.77493,
  "lon": -122.41942,
  "_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