Geocodio

live GeospatialGovernment

Geocodio MCP — US/Canada forward & reverse geocoding plus data append (census, timezones, congressional & legislative districts); single or 10k-batch. BYO Geocodio API key.

3 tools
0ms auth
free tier 50 calls/day

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/geocodio/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("geocodio_geocode", {});
ask_pipeworx
// 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):