mapbox-mcp-server

mapbox_directions_by_places

Get navigation route between multiple places using their names

Input Schema

NameRequiredDescriptionDefault
languageNoLanguage for geocoding results
placesYesArray of place names to route between
profileNoNavigation modedriving

Input Schema (JSON Schema)

{ "properties": { "language": { "description": "Language for geocoding results", "pattern": "^[a-z]{2}$", "type": "string" }, "places": { "description": "Array of place names to route between", "items": { "type": "string" }, "minItems": 2, "type": "array" }, "profile": { "default": "driving", "description": "Navigation mode", "enum": [ "driving-traffic", "driving", "walking", "cycling" ], "type": "string" } }, "required": [ "places" ], "type": "object" }