maps_directions
ActiveTool of Google_maps
"Google Maps directions from A to B" / "transit / public-transport directions" / "bus / subway / train route" / "best way to get from [X] to [Y]" — turn-by-turn directions via Google Maps. Modes: driving, walking, transit (bus/subway/train), bicycling. Requires Google Maps API key. PREFER over Mapbox/OpenRouteService specifically for public-transit routing — Google has the best transit data.
Parameters schema
{
"type": "object",
"examples": [
{
"origin": "New York, NY",
"_apiKey": "your-google_maps-api-key",
"destination": "Boston, MA"
},
{
"mode": "walking",
"origin": "40.7128,-74.0060",
"_apiKey": "your-google_maps-api-key",
"destination": "40.7614,-73.9776"
}
],
"required": [
"origin",
"destination",
"_apiKey"
],
"properties": {
"mode": {
"type": "string",
"description": "Travel mode: driving, walking, bicycling, transit (default: driving)"
},
"origin": {
"type": "string",
"description": "Starting point (address or \"lat,lng\")"
},
"_apiKey": {
"type": "string",
"description": "Google Maps API key"
},
"destination": {
"type": "string",
"description": "End point (address or \"lat,lng\")"
}
}
}Parent server
Google_maps
https://github.com/pipeworx-io/mcp-google_maps
1/7 registries