search_poi

Pack: tomtom · Endpoint: https://gateway.pipeworx.io/tomtom/mcp

Search for points of interest (POIs) — businesses, landmarks, restaurants, gas stations, etc. — by name or category, optionally near a lat/lon center within a radius. Returns name, category, address, coordinates, phone, url, and distance. Example: search_poi({ query: “coffee”, lat: 40.748, lon: -73.985, radius: 1000 })

Parameters

NameTypeRequiredDescription
querystringyesPOI search term, e.g. “coffee”, “pizza”, “gas station”, “Starbucks”
latnumbernoOptional latitude of the search center to bias/limit results
lonnumbernoOptional longitude of the search center to bias/limit results
radiusnumbernoOptional search radius in meters (only used when lat/lon are provided)
limitnumbernoMaximum number of results to return (default 10)

Example call

Arguments

{
  "query": "coffee",
  "lat": 40.748,
  "lon": -73.985,
  "radius": 1000,
  "_apiKey": "your-tomtom-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/tomtom/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_poi","arguments":{"query":"coffee","lat":40.748,"lon":-73.985,"radius":1000,"_apiKey":"your-tomtom-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_poi', {
  "query": "coffee",
  "lat": 40.748,
  "lon": -73.985,
  "radius": 1000,
  "_apiKey": "your-tomtom-api-key"
});

More examples

{
  "query": "gas station",
  "limit": 5,
  "_apiKey": "your-tomtom-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tomtom": {
      "url": "https://gateway.pipeworx.io/tomtom/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026