Google Maps
live SaaSGoogle Maps MCP Pack — geocoding, places, directions, distance matrix, elevation.
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_search Search for places nearby a location (restaurants, hotels, etc.).
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.
curl -X POST https://gateway.pipeworx.io/google_maps/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("maps_geocode", {}); // Or ask in plain English:
const answer = await px.ask("google maps mcp pack — geocoding, places, directions, distance matrix, elevation");