Google Maps MCP Server

maps_directions

Get directions between two points

Input Schema

NameRequiredDescriptionDefault
destinationYesEnding point address or coordinates
modeNoTravel mode (driving, walking, bicycling, transit)
originYesStarting point address or coordinates

Input Schema (JSON Schema)

{ "properties": { "destination": { "description": "Ending point address or coordinates", "type": "string" }, "mode": { "description": "Travel mode (driving, walking, bicycling, transit)", "enum": [ "driving", "walking", "bicycling", "transit" ], "type": "string" }, "origin": { "description": "Starting point address or coordinates", "type": "string" } }, "required": [ "origin", "destination" ], "type": "object" }