Google Maps Places MCP Server

Allow AI systems to search for places and get business info via Google Maps Places API.

Local serverstdioGo

What is the Google Maps Places MCP server?

Most developer tooling work still happens through a UI a human drives. Google Maps Places MCP server moves it into the conversation instead. Allow AI systems to search for places and get business info via Google Maps Places API.

The tools it exposes

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

  • places_text_search — Search for places by text query (e.g., "coffee shops near me")
  • places_photo_get — Get a photo URL for a place

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

What it needs from you

Configuration is passed through the environment: GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET. 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.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Google Maps Places's toolset — places_text_search, places_photo_get — is a fair guide to whether it matches your workflow. It is maintained by domdomegg; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Google Maps Places's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • 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.

Available tools

ToolWhat it does
places_text_searchSearch for places by text query (e.g., "coffee shops near me")
places_photo_getGet a photo URL for a place

Configuration

VariableDescriptionRequired
GOOGLE_CLIENT_IDConfiguration value read at startup.Optional
GOOGLE_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Google Maps Places to places text search.
  • Use Google Maps Places to places photo get.

Frequently asked questions

It connects Google Maps Places to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (places_text_search, places_photo_get) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Google Maps Places directly.