reverse_geocode

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

Convert coordinates to a physical address. Returns street address, city, country, and postal code. Use to identify locations from lat/lng pairs.

Parameters

NameTypeRequiredDescription
latitudenumberyesLatitude
longitudenumberyesLongitude

Example call

Arguments

{
  "latitude": 40.7128,
  "longitude": -74.006
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('reverse_geocode', {
  "latitude": 40.7128,
  "longitude": -74.006
});

More examples

{
  "latitude": 48.8584,
  "longitude": 2.2945
}

Response shape

Always returns: display_name, address

FieldTypeDescription
display_namestringFormatted address string
addressobjectDetailed address components as key-value pairs
Full JSON Schema
{
  "type": "object",
  "properties": {
    "display_name": {
      "type": "string",
      "description": "Formatted address string"
    },
    "address": {
      "type": "object",
      "description": "Detailed address components as key-value pairs"
    }
  },
  "required": [
    "display_name",
    "address"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026