geocodio_reverse

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

Reverse geocode a coordinate pair to the nearest street address. Optionally append data fields (congressional district, census/FIPS, timezone, etc.). Example: geocodio_reverse({ q: “38.9002898,-76.9990361”, fields: “cd,timezone”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
qstringyesLatitude,longitude pair, comma-separated, e.g. “38.9002898,-76.9990361”.
fieldsstringno
limitnumbernoMaximum number of nearby addresses to return (optional).
_apiKeystringyesGeocodio API key (free at https://www.geocod.io).

Example call

Arguments

{
  "q": "38.9002898,-76.9990361",
  "_apiKey": "your-geocodio-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/geocodio/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geocodio_reverse","arguments":{"q":"38.9002898,-76.9990361","_apiKey":"your-geocodio-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('geocodio_reverse', {
  "q": "38.9002898,-76.9990361",
  "_apiKey": "your-geocodio-api-key"
});

More examples

{
  "q": "40.7128,-74.0060",
  "fields": "cd,timezone",
  "limit": 3,
  "_apiKey": "your-geocodio-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 24, 2026