-
search_places(query, location?, radius?, type?, open_now?, language?): Search for places using text query.
- (string, required): Search text (e.g., "restaurants in Seoul")
- (string, optional): Center location as "lat,lng" (e.g., "37.5665,126.9780")
- (integer, optional): Search radius in meters (max 50,000)
- (string, optional): Place type filter (e.g., "restaurant", "tourist_attraction", "hotel")
- (boolean, optional, default: false): Only return currently open places
- (string, optional, default: "en"): Language code
-
search_nearby_places(location, radius, keyword?, type?, rank_by?, open_now?, language?): Search near specific coordinates.
- (string, required): Center as "lat,lng" (e.g., "37.5665,126.9780")
- (integer, required): Search radius in meters (max 50,000)
- (string, optional): Search keyword
- (string, optional): Place type filter
- (string, optional, default: "prominence"): "prominence" or "distance"
- (boolean, optional, default: false): Only open places
- (string, optional, default: "en"): Language code
-
get_place_details(place_id, language?, reviews_sort?): Get detailed place info including reviews and hours.
- (string, required): Place ID from search results
- (string, optional, default: "en"): Language code
- (string, optional, default: "most_relevant"): "most_relevant" or "newest"
-
get_directions(origin, destination, mode?, alternatives?, avoid?, language?): Get directions between two locations.
- (string, required): Starting point (address or "lat,lng")
- (string, required): Destination (address or "lat,lng")
- (string, optional, default: "driving"): "driving", "walking", "bicycling", "transit"
- (boolean, optional, default: false): Return alternative routes
- (string, optional): "tolls", "highways", or "ferries"
- (string, optional, default: "en"): Language code
-
geocode_address(address, language?, region?): Convert a text address to geographic coordinates.
- (string, required): Address to geocode
- (string, optional, default: "en"): Language code
- (string, optional): Country code for regional bias
-
reverse_geocode(latlng, language?): Convert coordinates to a human-readable address.
- (string, required): Coordinates as "lat,lng" (e.g., "37.5665,126.9780")
- (string, optional, default: "en"): Language code
-
show_on_map(map_type, markers?, directions?, center?, zoom?): Display locations or routes on an interactive map.
- (string, required): "markers" (location pins), "directions" (route), or "area"
- (array, required for "markers"): List of marker objects with lat, lng
- (object, required for "directions"): Route data with origin and destination
- (object, optional): Map center {lat, lng}
- (integer, optional): Zoom level 1-20
Follow the
Text -> Map -> Text sequence. Do NOT call
in parallel with other tool calls.