Geocodio
live GeospatialGovernmentGeocodio MCP — US/Canada forward & reverse geocoding plus data append (census, timezones, congressional & legislative districts); single or 10k-batch. BYO Geocodio API key.
Tools
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: geo
No parameters required.
Try it
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.999
No parameters required.
Try it
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 Highlan
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/geocodio/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/geocodio/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"geocodio_geocode","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("geocodio_geocode", {}); // Or ask in plain English:
const answer = await px.ask("geocodio mcp — us/canada forward & reverse geocoding plus data append (census, timezones, congressional & legislative districts); single or 10k-batch"); Related packs
Other Pipeworx packs in the same categories (Geospatial, Government):