Google Maps

live SaaS

Google Maps MCP Pack — geocoding, places, directions, distance matrix, elevation.

7 tools
0ms auth
free tier 50 calls/day

Tools

maps_geocode

Geocode an address to latitude/longitude coordinates.

No parameters required.

Try it
maps_reverse_geocode

Reverse geocode coordinates to an address.

No parameters required.

Try it
maps_place_details

Get detailed info about a place (address, phone, hours, reviews, rating).

No parameters required.

Try it
maps_directions

Get directions between two locations.

No parameters required.

Try it
maps_distance_matrix

Get travel distance and time between multiple origins and destinations.

No parameters required.

Try it
maps_elevation

Get elevation data for locations.

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/google_maps/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/google_maps/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"maps_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("maps_geocode", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("google maps mcp pack — geocoding, places, directions, distance matrix, elevation");