Google Maps Search
Search Google Maps for places and get structured leads: name, address, rating, review count, category, phone, and website. The classic lead-list workflow, one call, no Maps API key.
Overview
Google Maps Search gives agents and sales workflows a practical local-lead primitive. Provide a natural-language place query, such as coffee roasters in Sydney, and the tool renders Google Maps through Better Fetch before returning structured places that are ready for enrichment, CRM import, or follow-up research.
Last validated: Jul 3, 2026
Playground
Input
querystringrequiredWhat and where, e.g. "coffee roasters in Sydney"
max_resultsintegerdefault: 10Max places to return
Output
countintegerrequiredNumber of places returned
querystringrequiredThe query as searched
placesobject[]requiredPlaces in result order
Examples
sydney-coffee
{
"query": "coffee roasters in Sydney",
"max_results": 5
}Use cases
FAQ
What fields does Google Maps Search return?
The tool returns place names and, when visible in the rendered results, address, rating, review count, category, phone, website, latitude, and longitude.
Do I need a Google Maps API key?
No. This tool uses Better Fetch's browser engine to render the public Google Maps search page and parse the result cards into structured output.
Use it anywhere
MCP (Claude, Cursor, any client)
# Add the Better Fetch MCP connector (or paste the URL into # Claude → Settings → Connectors → Add custom connector): claude mcp add --transport http better-fetch https://betterfetch.co/api/mcp \ --header "Authorization: Bearer bf_your_key_here" # Then ask for the tool by name: google_maps_search
REST
curl -sS -X POST "https://betterfetch.co/api/tools/google_maps_search/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input": {"query":"coffee roasters in Sydney","max_results":5}}'Run locally
git clone https://github.com/better-fetch/google-maps-search && cd google-maps-search && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"query":"coffee roasters in Sydney","max_results":5}'