Google Maps
liveGeographyTravelGeocoding, places, directions, distance matrix, elevation.
Tools
maps_geocodeGeocode an address to latitude/longitude coordinates.
No parameters required.
Try it
maps_reverse_geocodeReverse geocode coordinates to an address.
No parameters required.
Try it
maps_place_searchSearch for places nearby a location (restaurants, hotels, etc.).
No parameters required.
Try it
maps_place_detailsGet detailed info about a place (address, phone, hours, reviews, rating).
No parameters required.
Try it
maps_directionsGet directions between two locations.
No parameters required.
Try it
maps_distance_matrixGet travel distance and time between multiple origins and destinations.
No parameters required.
Try it
maps_elevationGet 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("geocoding, places, directions, distance matrix, elevation");