radar_geocode
Pack: radar · Endpoint: https://gateway.pipeworx.io/radar/mcp
Geocode an address to coordinates using Radar (forward geocoding). Returns the best-match formatted address with latitude/longitude. Example: radar_geocode({ query: “841 Broadway, New York, NY”, apiKey: “prj_live_sk…” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Full address to geocode, e.g. “841 Broadway, New York, NY 10003” |
_apiKey | string | yes | Radar API key (get one free at radar.com) |
Example call
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_geocode","arguments":{}}}'
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.