MCP Google Map MCP Server

18 Google Maps tools for AI agents — geocode, search, directions, weather, air quality, local rank tracking, map images via MCP server or standalone

Remote serverstreamable-httpTypeScript

What is the MCP Google Map MCP server?

Most developer tooling work still happens through a UI a human drives. MCP Google Map MCP server moves it into the conversation instead. 18 Google Maps tools for AI agents — geocode, search, directions, weather, air quality, local rank tracking, map images via MCP server or standalone CLI.

The short version

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • maps_search_nearby — Find places near a location by type (restaurant, cafe, hotel, etc.). Supports filtering by radius, rating, and open status
  • maps_search_places — Free-text place search (e.g., "sushi restaurants in Tokyo"). Supports location bias, rating, open-now filters
  • maps_place_details — Get full details for a place by its place_id — reviews, phone, website, hours. Optional maxPhotos param returns photo URLs
  • maps_geocode — Convert an address or landmark name into GPS coordinates
  • maps_reverse_geocode — Convert GPS coordinates into a street address
  • maps_distance_matrix — Calculate travel distances and times between multiple origins and destinations. Driving mode supports avoid_tolls and avoid_highways
  • maps_directions — Get step-by-step navigation between two points with route details. Driving mode supports avoid_tolls and avoid_highways
  • maps_elevation — Get elevation (meters above sea level) for geographic coordinates
  • maps_timezone — Get timezone ID, name, UTC/DST offsets, and local time for coordinates
  • maps_weather — Get current weather conditions or forecast — temperature, humidity, wind, UV, precipitation
  • maps_air_quality — Get air quality index, pollutant concentrations, and health recommendations by demographic group
  • maps_static_map — Generate a map image with markers, paths, or routes — returned inline for the user to see directly

What it needs from you

Configuration is passed through the environment: GOOGLE_MAPS_API_KEY, GOOGLE_MAPS_ENABLED_TOOLS, YOUR_API_KEY, MCP_SERVER_HOST. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Google Map.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Google Map's toolset — maps_search_nearby, maps_search_places, maps_place_details and 11 more — is a fair guide to whether it matches your workflow. It is maintained by cablate; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
maps_search_nearbyFind places near a location by type (restaurant, cafe, hotel, etc.). Supports filtering by radius, rating, and open status.
maps_search_placesFree-text place search (e.g., "sushi restaurants in Tokyo"). Supports location bias, rating, open-now filters.
maps_place_detailsGet full details for a place by its place_id — reviews, phone, website, hours. Optional maxPhotos param returns photo URLs.
maps_geocodeConvert an address or landmark name into GPS coordinates.
maps_reverse_geocodeConvert GPS coordinates into a street address.
maps_distance_matrixCalculate travel distances and times between multiple origins and destinations. Driving mode supports avoid_tolls and avoid_highways.
maps_directionsGet step-by-step navigation between two points with route details. Driving mode supports avoid_tolls and avoid_highways.
maps_elevationGet elevation (meters above sea level) for geographic coordinates.
maps_timezoneGet timezone ID, name, UTC/DST offsets, and local time for coordinates.
maps_weatherGet current weather conditions or forecast — temperature, humidity, wind, UV, precipitation.
maps_air_qualityGet air quality index, pollutant concentrations, and health recommendations by demographic group.
maps_static_mapGenerate a map image with markers, paths, or routes — returned inline for the user to see directly.
maps_batch_geocodeGeocode up to 50 addresses in one call — returns coordinates for each.
maps_search_along_routeSearch for places along a route between two points — ranked by minimal detour time.

How to install the MCP Google Map MCP server

{
  "mcpServers": {
    "google-maps": {
      "command": "npx",
      "args": ["-y", "@cablate/mcp-google-map", "--stdio"],
      "env": {
        "GOOGLE_MAPS_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GOOGLE_MAPS_API_KEYCredential the server authenticates with.Yes
GOOGLE_MAPS_ENABLED_TOOLSConfiguration value read at startup.Optional
YOUR_API_KEYCredential the server authenticates with.Yes
MCP_SERVER_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use MCP Google Map to maps search nearby.
  • Use MCP Google Map to maps search places.
  • Use MCP Google Map to maps place details.

Frequently asked questions

It connects MCP Google Map to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (maps_search_nearby, maps_search_places, maps_place_details, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Google Map directly.