Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Google Maps Scraper
G
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:25:17 PM

Google Maps Scraper

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Live Google Maps business search, review, and photo data for AI agents over MCP.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "google-maps-scraper": {
      "command": "npx",
      "args": [
        "-y",
        "google-maps-scraper"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

G Maps Extractor

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.

  • Website: gmapsextractor.com
  • Product page: Google Maps Scraper MCP
  • Get an API key: cloud.gmapsextractor.com
  • MCP endpoint: https://cloud.gmapsextractor.com/api/mcp
  • Transport: Streamable HTTP
  • Authentication: Authorization: Bearer YOUR_API_KEY

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

Terminal
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:

config.json
{
  "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:

config.json
{
  "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:

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:

config.json
{
  "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.

ParameterTypeRequiredDescription
qstringYesSearch query, such as coffee shops in New York
llstringNoCoordinates and zoom, such as @40.7128,-74.0060,11z
hlstringNoLanguage code; defaults to en
glstringNoCountry code; defaults to us
pagenumberNoPage number; defaults to 1
extrabooleanNoInclude emails, social profiles, and extended details

get_place_reviews

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

ParameterTypeRequiredDescription
fidstringYesGoogle Maps feature ID returned by a search
pagenumberNoPage number; defaults to 1
max_pagenumberNoMaximum number of pages to retrieve
sort_bynumberNo1 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.

ParameterTypeRequiredDescription
fidstringYesGoogle Maps feature ID returned by a search
pagenumberNoPage number; defaults to 1
max_pagenumberNoMaximum 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:

http
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

Related MCP Servers

View all in Developer Tools View all alternatives
  • Directory logoDirectory

    Discover and query every business on ANOTS β€” search, ask, or find-and-ask over MCP.

    πŸ’» Developer Tools1 views
    Compare vs Directory β†’
  • C
    CrustAPI Google Search

    Live Google data for AI agents: web, Maps, news, images, reviews + 7 more. Pay only for results.

    πŸ’» Developer Tools0 views
    Compare vs CrustAPI Google Search β†’
  • M
    Mcp

    Workix hub catalog plus freelance digest/search and proposal helpers for AI agents

    πŸ’» Developer Tools0 views
    Compare vs Mcp β†’
  • M
    Mcp

    Live App Store & Google Play data for AI agents: app discovery, ASO keywords, reviews.

    πŸ’» Developer Tools0 views
    Compare vs Mcp β†’

Frequently Asked Questions about Google Maps Scraper

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "google-maps-scraper": { "command": "npx", "args": ["-y", "Google Maps Scraper"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewGoogle Maps Scraper AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/google-maps-scraper?style=directory)](https://allmcps.com/mcp/google-maps-scraper)
HTML Embed
<a href="https://allmcps.com/mcp/google-maps-scraper"><img src="https://allmcps.com/api/badge/google-maps-scraper?style=directory" alt="Google Maps Scraper on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Google Maps Scraper β†’Install in Claude DesktopInstall in CursorInstall in VS Code