GOOGLE_MAPS_API_KEY
: Your Google Maps API key.test
.GOOGLE_MAPS_API_KEY
– [required] Your Google Maps API KeyMESHAGENT_PORT
– [required] Port for MCP server communications (e.g., 8001
)Tool | Description |
---|---|
maps_directions | Get directions between two points |
maps_distance_matrix | Calculate travel distance and time for multiple origins and destinations |
maps_elevation | Get elevation data for locations on the earth |
maps_geocode | Convert an address into geographic coordinates |
maps_place_details | Get detailed information about a specific place |
maps_reverse_geocode | Convert coordinates into an address |
maps_search_places | Search for places using Google Places API |
maps_directions
destination
(string) – Ending point address or coordinatesorigin
(string) – Starting point address or coordinatesmode
(string, optional) – Travel mode (driving, walking, bicycling, transit)maps_distance_matrix
destinations
(array) – Array of destination addresses or coordinatesorigins
(array) – Array of origin addresses or coordinatesmode
(string, optional) – Travel mode (driving, walking, bicycling, transit)maps_elevation
locations
(array) – Array of locations to get elevation formaps_geocode
address
(string) – The address to geocodemaps_place_details
place_id
(string) – The place ID to get details formaps_reverse_geocode
latitude
(number) – Latitude coordinatelongitude
(number) – Longitude coordinatemaps_search_places
query
(string) – Search querylocation
(object, optional) – Optional center point for the searchradius
(number, optional) – Search radius in meters (max 50000)