geocode

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

Geocoding: convert an address, place name, or free-text location query into geographic coordinates (latitude/longitude). Returns formatted address, country, lat, lon, type, and match score. Example: geocode({ query: “350 5th Ave, New York” })

Parameters

NameTypeRequiredDescription
querystringyesAddress or place to geocode, e.g. “350 5th Ave, New York” or “Eiffel Tower”
limitnumbernoMaximum number of results to return (default 5)

Example call

Arguments

{
  "query": "350 5th Ave, New York",
  "_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":"geocode","arguments":{"query":"350 5th Ave, New York","_apiKey":"your-tomtom-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('geocode', {
  "query": "350 5th Ave, New York",
  "_apiKey": "your-tomtom-api-key"
});

More examples

{
  "query": "Eiffel Tower",
  "limit": 3,
  "_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