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

NameTypeRequiredDescription
querystringyesWhat to search for, e.g. “coffee”, “pharmacy”, “hardware store”.
nearstringyesPlace name (e.g. “Times Square, New York”) or “lat,lng” (e.g. “40.758,-73.985”) to search around.
limitnumbernoMax results (default 10, max 50).

Example call

Arguments

{
  "query": "coffee",
  "near": "Times Square, New York"
}

curl

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":{"query":"coffee","near":"Times Square, New York"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('here_discover', {
  "query": "coffee",
  "near": "Times Square, New York"
});

More examples

{
  "query": "pharmacy",
  "near": "48.85,2.35",
  "limit": 15
}

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.

Regenerated from source · build August 17, 2026