radar_autocomplete
Pack: radar · Endpoint: https://gateway.pipeworx.io/radar/mcp
Autocomplete an address/place from partial text using Radar. Returns ranked address/place suggestions with coordinates. Optionally bias results near a lat,lng. Example: radar_autocomplete({ query: “841 broadway new”, near: “40.73,-73.99”, apiKey: “prj_live_sk…” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Partial address or place name, e.g. “841 broadway new” |
near | string | no | Optional proximity bias as “latitude,longitude”, e.g. “40.73,-73.99” |
limit | number | no | Optional max number of results (default 10) |
_apiKey | string | yes | Radar API key (get one free at radar.com). Looks like prj_live_sk_… or prj_live_pk_… |
Example call
Arguments
{
"query": "841 broadway new",
"near": "40.73,-73.99",
"_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_autocomplete","arguments":{"query":"841 broadway new","near":"40.73,-73.99","_apiKey":"your-radar-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('radar_autocomplete', {
"query": "841 broadway new",
"near": "40.73,-73.99",
"_apiKey": "your-radar-api-key"
});
More examples
{
"query": "coffee shop",
"limit": 5,
"_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.