radar_context
Pack: radar · Endpoint: https://gateway.pipeworx.io/radar/mcp
Get place/geofence/region context for coordinates using Radar. Returns geofences, the containing place, and administrative region (country/state/postal code) for a lat/lng. Example: radar_context({ lat: 40.70390, lon: -73.98670, apiKey: “prj_live_sk…” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | Latitude, e.g. 40.70390 |
lon | number | yes | Longitude, e.g. -73.98670 |
_apiKey | string | yes | Radar 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_context","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_context', {
"lat": 40.7039,
"lon": -73.9867,
"_apiKey": "your-radar-api-key"
});
More examples
{
"lat": 51.50735,
"lon": -0.12775,
"_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.