Skip to main content
Glama

Stadia Maps Location API MCP Server

route-overview

Calculate travel time, distance, and route polyline between multiple locations. Supports various travel methods like driving, biking, or walking. Results are returned in JSON format for integration and analysis.

Instructions

Get high-level routing information between two or more locations. Includes travel time, distance, and an encoded polyline of the route. The result is JSON.

Input Schema

NameRequiredDescriptionDefault
costingYesThe method of travel to use when routing (auto = automobile).
locationsYes
unitsYesThe unit to report distances in.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "costing": { "description": "The method of travel to use when routing (auto = automobile).", "enum": [ "auto", "bus", "taxi", "truck", "bicycle", "bikeshare", "motor_scooter", "motorcycle", "pedestrian", "low_speed_vehicle" ], "type": "string" }, "locations": { "items": { "additionalProperties": false, "description": "A geographic coordinate pair.", "properties": { "lat": { "description": "The latitude of the point.", "maximum": 90, "minimum": -90, "type": "number" }, "lon": { "description": "The longitude of the point.", "maximum": 180, "minimum": -180, "type": "number" } }, "required": [ "lat", "lon" ], "type": "object" }, "minItems": 2, "type": "array" }, "units": { "description": "The unit to report distances in.", "enum": [ "km", "mi" ], "type": "string" } }, "required": [ "locations", "costing", "units" ], "type": "object" }
Install Server

Other Tools from Stadia Maps Location API MCP Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/stadiamaps/stadiamaps-mcp-server-ts'

If you have feedback or need assistance with the MCP directory API, please join our Discord server