here_discover
Pack: here · Endpoint: https://gateway.pipeworx.io/here/mcp
Find places / points of interest (restaurants, shops, landmarks, gas stations, etc.) near a location via HERE — “coffee near Times Square”, “pharmacies near 48.85,2.35”, “hardware stores in Austin”. Returns name, category, address, coordinates, distance, and contact info. The near location can be a place name (geocoded automatically) or “lat,lng”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | What to search for, e.g. “coffee”, “pharmacy”, “hardware store”. |
near | string | yes | Place name (e.g. “Times Square, New York”) or “lat,lng” (e.g. “40.758,-73.985”) to search around. |
limit | number | no | Max results (default 10, max 50). |
Example call
curl -X POST https://gateway.pipeworx.io/here/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"here_discover","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"here": {
"url": "https://gateway.pipeworx.io/here/mcp"
}
}
}
See Getting Started for client-specific install steps.