Google Maps Scraper

Google Maps Scraper

Give your AI agent live Google Maps search, review, and photo data through one secure MCP connection.

Category
Visit Server

README

<p align="center"> <a href="https://gmapsextractor.com"> <img src="logo.png" alt="G Maps Extractor" width="400"> </a> </p>

Google Maps Scraper MCP server

Give your AI agent live Google Maps business search, review, and photo data through one secure Model Context Protocol connection.

This repository is the public listing and manifest for the hosted G Maps Extractor MCP server. The server runs remotely, so there is no package to install and nothing to host locally.

What you can do

  • Search businesses by keyword and location, including listing details such as names, addresses, phone numbers, websites, ratings, reviews, and photos.
  • Retrieve public Google Maps reviews for reputation research and customer feedback analysis.
  • Retrieve public business photos and image URLs for listing enrichment and visual audits.

Common workflows include prospecting research, local market analysis, competitor comparisons, CRM enrichment, reputation analysis, and listing audits.

Connect

Create an API key in the G Maps Extractor dashboard, keep it in a secure environment variable or secret store, and register the remote endpoint with your MCP client.

Claude Code

claude mcp add --transport http google-maps-scraper-mcp \
  https://cloud.gmapsextractor.com/api/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

Cursor

Add this to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "google-maps-scraper-mcp": {
      "url": "https://cloud.gmapsextractor.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

VS Code

Add this to .vscode/mcp.json in your project:

{
  "servers": {
    "google-maps-scraper-mcp": {
      "type": "http",
      "url": "https://cloud.gmapsextractor.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.google-maps-scraper-mcp]
type = "http"
url = "https://cloud.gmapsextractor.com/api/mcp"

[mcp_servers.google-maps-scraper-mcp.headers]
Authorization = "Bearer YOUR_API_KEY"

Cline

Add this to your MCP settings:

{
  "mcpServers": {
    "google-maps-scraper-mcp": {
      "type": "streamableHttp",
      "url": "https://cloud.gmapsextractor.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Tools

search_google_maps

Search for businesses and places on Google Maps in real time.

Parameter Type Required Description
q string Yes Search query, such as coffee shops in New York
ll string No Coordinates and zoom, such as @40.7128,-74.0060,11z
hl string No Language code; defaults to en
gl string No Country code; defaults to us
page number No Page number; defaults to 1
extra boolean No Include emails, social profiles, and extended details

get_place_reviews

Retrieve public reviews for a place using the fid returned by search_google_maps.

Parameter Type Required Description
fid string Yes Google Maps feature ID returned by a search
page number No Page number; defaults to 1
max_page number No Maximum number of pages to retrieve
sort_by number No 1 relevant, 2 newest, 3 highest rating, 4 lowest rating

get_place_photos

Retrieve public photos for a place using the fid returned by search_google_maps.

Parameter Type Required Description
fid string Yes Google Maps feature ID returned by a search
page number No Page number; defaults to 1
max_page number No Maximum number of pages to retrieve

Example prompts

  • “Find the top-rated coffee shops in Portland and return their website, phone number, rating, and review count.”
  • “Get the newest Google Maps reviews for this place and summarize the recurring customer complaints.”
  • “Retrieve public photos for these restaurant FIDs and identify locations with limited visual content.”
  • “Compare visible listing signals for dentists in Austin and group the results by rating.”

Authentication and usage

Every request must include your G Maps Extractor API key:

Authorization: Bearer YOUR_API_KEY

Do not commit a real API key to this repository or any client configuration. New accounts can start with the available free monthly requests; higher-volume usage follows the plan attached to the key.

About this repository

This is a public discovery, configuration, and documentation repository. It contains:

  • server.json for MCP Registry-compatible server metadata
  • .mcp.json as a ready-to-customize client configuration
  • llms-install.md with concise installation instructions for AI agents
  • product icons and branding

The hosted MCP implementation remains at https://cloud.gmapsextractor.com/api/mcp.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured