Agent Tools
Back to MCP servers

com.googleapis.mapstools/mcp

https://mapstools.googleapis.com/mcp
● healthy

skills: {'id': 'search_places', 'name': 'search_places', 'description': 'Call this tool when the user\'s request is to find places, businesses, addresses, locations, points of interest, or any other Google Maps related search.\n\n**Input Requirements (CRITICAL):**\n\n1. **`text_query` (string - MANDATORY):** The primary search query. This must clearly define what the user is looking for.\n\n * **Examples:** `\'restaurants in New York\'`, `\'coffee shops near Golden Gate Park\'`, `\'SF MoMA\'`, `\'1600 Amphitheatre Pkwy, Mountain View, CA, USA\'`, `\'pets friendly parks in Manhattan, New York\'`, `\'date night restaurants in Chicago\'`, `\'accessible public libraries in Los Angeles\'`.\n\n * **For specific place details:** Include the requested attribute (e.g., `\'Google Store Mountain View opening hours\'`, `\'SF MoMa phone number\'`, `\'Shoreline Park Mountain View address\'`).\n\n2. **`location_bias` (object - OPTIONAL):** Use this to prioritize results near a specific geographic area.\n * **Format:** `{"location_bias": {"circle": {"center": {"latitude": [value], "longitude": [value]}, "radius_meters": [value (optional)]}}}`\n\n * **Usage:**\n * **To bias to a 5km radius:** `{"location_bias": {"circle": {"center": {"latitude": 34.052235, "longitude": -118.243683}, "radius_meters": 5000}}}`\n * **To bias strongly to the center point:** `{"location_bias": {"circle": {"center": {"latitude": 34.052235, "longitude": -118.243683}}}}` (omitting `radius_meters`).\n\n3. **`language_code` (string - OPTIONAL):** The language to show the search results summary in.\n * **Format:** A two-letter language code (ISO 639-1), optionally followed by an underscore and a two-letter country code (ISO 3166-1 alpha-2), e.g., `en`, `ja`, `en_US`, `zh_CN`, `es_MX`. If the language code is not provided, the results will be in English.\n\n4. **`region_code` (string - OPTIONAL):** The Unicode CLDR region code of the user. This parameter is used to display the place details, like region-specific place name, if available. The parameter canaffect results based on applicable law.\n * **Format:** A two-letter country code (ISO 3166-1 alpha-2), e.g., `US`, `CA`.\n\n**Instructions for Tool Call:**\n\n* Location Information (CRITICAL): The search must contain sufficient location information. If the location is ambiguous (e.g., just "pizza places"), *you must* specify it in the `text_query` (e.g., "pizza places in New York") or use the `location_bias` parameter. Include city, state/province, and region/country name if needed for disambiguation.\n\n* Always provide the most specific and contextually rich `text_query` possible.\n\n* Only use `location_bias` if coordinates are explicitly provided or if inferring a location from a user\'s known context is appropriate *and* necessary for better results.\n\n* The grounded output must be attributed to the source using the information from the `attribution` field when available.\n', 'tags': [], 'examples': None, 'input_modes': None, 'output_modes': None}, {'id': 'lookup_weather', 'name': 'lookup_weather', 'description': 'Retrieves comprehensive weather data including current conditions, hourly, and daily forecasts.\n\n**Specific Data Available:** Temperature (Current, Feels Like, Max/Min, Heat Index), Wind (Speed, Gusts, Direction), Celestial Events (Sunrise/Sunset, Moon Phase), Precipitation (Type, Probability, Quantity/QPF), Atmospheric Conditions (UV Index, Humidity, Cloud Cover, Thunderstorm Probability), and Geocoded Location Address.\n\n**Location & Location Rules (CRITICAL):**\n\nThe location for which weather data is requested is specified using the `location` field.\nThis field is a \'oneof\' structure, meaning you MUST provide a value for ONLY ONE\nof the three location sub-fields below to ensure an accurate weather data lookup.\n\n1. Geographic Coordinates (lat_lng)\n * Use it when you are provided with exact lat/lng coordinates.\n * Example:\n {"location": {"lat_lng": {"latitude": 34.0522, "longitude": -118.2437}}} // Los Angeles\n\n2. Place ID (place_id)\n * An unambiguous string identifier (Google Maps Place ID).\n * The place_id can be fetched from the search_places tool.\n * Example:\n {"location": {"place_id": "ChIJLU7jZClu5kcR4PcOOO6p3I0"}} // Eiffel Tower\n\n3. Address String (address)\n * A free-form string that requires specificity for geocoding.\n * City & Region: Always include region/country (e.g., "London, UK", not "London").\n * Street Address: Provide the full address (e.g., "1600 Pennsylvania Ave NW, Washington, DC").\n * Postal/Zip Codes: MUST be accompanied by a country name (e.g., "90210, USA", NOT "90210").\n * Example:\n {"location": {"address": "1600 Pennsylvania Ave NW, Washington, DC"}}\n\n**Usage Modes:**\n\n* **Current Weather:** Provide `location` only. Do not specify `date` and `hour`.\n\n* **Hourly Forecast:** Provide `location`, `date`, and `hour` (0-23). Use for specific times (e.g., "at 5 PM") or terms like "next few hours" or "later today". If the user specifies minute, round down to the nearest hour. Hourly forecast beyond 120 hours from now is not supported. Historical hourly weather is supported up to 24 hours in the past.\n\n* **Daily Forecast:** Provide `location` and `date`. Do not specify `hour`. Use for general day requests (e.g., "weather for tomorrow", "weather on Friday", "weather on 12/25"). If today\'s date is not in the context, you should clarify it with the user. Daily forecast beyond 10 days including today is not supported. Historical weather is not supported.\n\n**Parameter Constraints:**\n\n* **Timezones:** All `date` and `hour` inputs must be relative to the **location\'s local time zone**, not the user\'s time zone.\n* **Date Format:** Inputs must be separated into `{year, month, day}` integers.\n* **Units:** Defaults to `METRIC`. Set `units_system` to `IMPERIAL` for Fahrenheit/Miles if the user implies US standards or explicitly requests it.\n\n* The grounded output must be attributed to the source using the information from the `attribution` field when available.\n', 'tags': [], 'examples': None, 'input_modes': None, 'output_modes': None}, {'id': 'compute_routes', 'name': 'compute_routes', 'description': 'Computes a travel route between a specified origin and destination. **Supported Travel Modes:** DRIVE (default), WALK.\n\n**Input Requirements (CRITICAL):**\nRequires both **origin** and **destination**. Each must be provided using one of the following methods, nested within its respective field:\n\n* **address:** (string, e.g., \'Eiffel Tower, Paris\'). Note: The more granular or specific the input address is, the better the results will be.\n\n* **lat_lng:** (object, {"latitude": number, "longitude": number})\n\n* **place_id:** (string, e.g., \'ChIJOwE_Id1w5EAR4Q27FkL6T_0\') Note: This id can be obtained from the search_places tool.\nAny combination of input types is allowed (e.g., origin by address, destination by lat_lng). If either the origin or destination is missing, **you MUST ask the user for clarification** before attempting to call the tool.\n\n**Example Tool Call:**\n{"origin":{"address":"Eiffel Tower"},"destination":{"place_id":"ChIJt_5xIthw5EARoJ71mGq7t74"},"travel_mode":"DRIVE"}\n\n* The grounded output must be attributed to the source using the information from the `attribution` field when available.\n', 'tags': [], 'examples': None, 'input_modes': None, 'output_modes': None}, {'id': 'resolve_names', 'name': 'resolve_names', 'description': 'Resolves a batch list of specific location queries (landmark names or exact addresses) into canonical Google Maps Place IDs.\n\n**Input Requirements (CRITICAL):**\n\n1. **`queries` (array of objects - MANDATORY):** A list of location queries to resolve. You may specify up to 20 queries.\n * **Each query object must have:**\n * **`text` (string - MANDATORY):** The text query representing a specific place name or address to resolve.\n * **Examples:** `\'Googleplex, Mountain View, CA\'`, `\'1600 Amphitheatre Pkwy, Mountain View, CA\'`, `\'Eiffel Tower, Paris\'`.\n\n2. **`location_bias` (object - OPTIONAL):** Use this to prioritize results near a specific geographic area.\n * **Format:** `{"viewport": {"low": {"latitude": [value], "longitude": [value]}, "high": {"latitude": [value], "longitude": [value]}}}`\n\n3. **`region_code` (string - OPTIONAL):** The Unicode CLDR region code (two-letter country code, e.g., `US`, `CA`) of the user to bias the results.\n\n**Instructions for Tool Call:**\n\n* Specificity (CRITICAL): Queries must represent a specific place name or address. General searches like `\'restaurants\'` or chain names like `\'Starbucks\'` are not supported.\n* Do NOT call this tool if the downstream tools you plan to invoke already accept raw address or place name strings directly.\n\n**Error Handling (CRITICAL):**\n\n* This is a batch processing tool. A request might return "mixed results" (e.g. some queries resolve successfully while others fail).\n* The output list of `results` is guaranteed to map 1:1 with the input `queries` indices. A failed query will result in an empty `Result` message (no `entity` is set) at its corresponding index in the `results` list.\n* You **MUST** check the `failed_requests` map field in the response to identify which specific query index failed. The key of `failed_requests` represents the 0-based index of the failed query in the request. Do not assume the entire batch call failed because of a partial failure.\n', 'tags': [], 'examples': None, 'input_modes': None, 'output_modes': None}, {'id': 'resolve_maps_urls', 'name': 'resolve_maps_urls', 'description': 'Resolves a list of Google Maps URLs into canonical Google Maps Place IDs.\n\n**When to call this tool (CRITICAL):**\n\n* Use this tool when the user provides one or more Google Maps sharing links or URLs (e.g. \'https://maps.app.goo.gl/...\', \'https://www.google.com/maps/place/...\', or \'https://maps.google.com/...\') and you need to extract the underlying canonical Place IDs.\n* You can specify up to 20 URLs to resolve in a single batch request.\n\n**Input Requirements (CRITICAL):**\n\n* **`urls` (array of strings - MANDATORY):** The list of Google Maps URLs to resolve. Each URL must be a valid, single-place Google Maps URL.\n\n**Error Handling (CRITICAL):**\n\n* This is a batch processing tool. A request might return "mixed results" (e.g. some URLs resolve successfully while others fail).\n* The output list of `entities` is guaranteed to map 1:1 with the input `urls` indices. A failed URL resolution will result in an empty `Entity` message (no fields are set) at its corresponding index in the `entities` list.\n* You **MUST** check the `failed_requests` map field in the response to identify which specific URL index failed. The key of `failed_requests` represents the 0-based index of the failed URL in the request. Do not assume the entire batch call failed because of a partial failure.\n', 'tags': [], 'examples': None, 'input_modes': None, 'output_modes': None}; uptime_30d 1.0%; p95 271.1ms; conformance: pass

Transport
streamable-http
Auth
Cost

How to connect

MCP endpoint (streamable-http)
https://mapstools.googleapis.com/mcp
JSON-RPC initialize probe
curl -X POST https://mapstools.googleapis.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'
Homepage
https://mapstools.googleapis.com/mcp
Listed at (chiark)
https://chiark.ai/agents/f33eafdb-58f8-4c31-b64b-e58fb25e4557