geocode_reverse

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

“What’s at [lat,lng]” / “reverse geocode coordinates” / “what address is at these coords” / “what place is at this GPS point” — convert longitude / latitude into the nearest street address, neighborhood, city, region, or country via Mapbox’s global geocoder. Works worldwide.

Parameters

NameTypeRequiredDescription
lonnumberyes
latnumberyes
countrystringno
typesstringno
languagestringno
limitnumberno

Example call

Arguments

{
  "lon": -74.006,
  "lat": 40.7128
}

curl

curl -X POST https://gateway.pipeworx.io/mapbox/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocode_reverse","arguments":{"lon":-74.006,"lat":40.7128}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('geocode_reverse', {
  "lon": -74.006,
  "lat": 40.7128
});

More examples

{
  "lon": 2.2945,
  "lat": 48.8584,
  "country": "FR",
  "limit": 3
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Mapbox Geocoding API response for reverse geocoding"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026