MCP server exposing 3 tools for geocodio.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/geocodio/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
geocodio_geocode — Forward geocode a single address to latitude/longitude with accuracy score and type. Optionally append data fields (congressional district, census/FIPS, timezone, ACS demographics, etc.). Example: geocodio_geocode({ q: "1109 N Highland St, Arlington VA", fields: "cd,census,timezone", _apiKey: "your-key" })geocodio_reverse — 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" })geocodio_batch — Batch forward-geocode up to 10,000 addresses in a single request. Pass an array of address strings. Optionally append data fields to every result. Example: geocodio_batch({ addresses: ["1109 N Highland St, Arlington VA", "525 University Ave, Palo Alto CA"], fields: "cd", _apiKey: "your-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/geocodio/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io