Google Maps MCP Server
Local business search and lead generation via Google Maps
📍 Google Maps MCP — AI Lead Gen & Search
Pricing
from $10.00 / 1,000 results
Try for free
Go to Apify Store
📍 Google Maps MCP — AI Lead Gen & Search
nexgendata/google-maps-mcp-server
Try for free
Ask questions about this Actor
📍 Google Maps, places, business listings, geocoding MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search places + reviews + hours + lat/lng + nearby POIs via MCP — purpose-built for location-aware AI workflows. Free tier available.
Pricing
Rating
0.0
(0)
Developer
Stephan Corbeil
Maintained by Community
Actor stats
0
Bookmarked
8
Total users
5
Monthly active users
11 hours ago
Last modified
Categories
AI
Lead generation
MCP servers
README
Pricing
Endpoints
Issues
🤖 Google Maps MCP Server — Local Business + Geocoding Tools for AI Agents
Plug Google Maps + Yelp scraping into Claude, ChatGPT, Cursor, or any MCP-compatible AI agent. A drop-in alternative to wiring Google Maps Places API directly into your agent, or paying for Mapbox MCP — ships as an Apify Actor that exposes structured tools for search_places, place_details, geocode_address, reverse_geocode, and list_reviews.
Why This MCP Server Beats Direct Places API Wiring, Mapbox MCP & Custom Agent Plumbing
| Feature | NexGenData Google Maps MCP | Google Maps Places API (direct) | Mapbox MCP | Custom-built agent tool |
|---|---|---|---|---|
| Cost | Pay-per-event, no subscription | $17 – $32 per 1,000 calls | Mapbox plan tier | Engineering time |
| MCP-ready out of the box | Yes — Apify MCP endpoint | No — wire SDK yourself | Yes | Build it |
| Search + details + reviews + geocode | Yes — one tool surface | Multiple endpoints + billing | Limited | Build them |
| Auth | Apify token | Google Cloud API key + billing | Mapbox token | Whatever you wire |
| Rate-limit handling | Internal proxy pool | Quotas per project | Plan-gated | You handle it |
| Output schema | Stable JSON for AI agents | Raw Places API schema | Mapbox schema | Whatever you define |
| Yelp coverage included | Yes (via sister Yelp scraper handoff) | No | No | Build it |
| Time-to-first-tool-call | < 5 minutes | Billing + project setup + SDK | Signup + plan | Days |
Most AI-agent builders pick this MCP because it is cheaper than Places API per-call billing, simpler than writing a custom MCP shim, and broader than Mapbox's geocoding-first scope — you get the full local-business lookup surface (places + reviews + hours + phone + website) as one MCP tool group.
What This MCP Exposes
The actor publishes the following MCP tools to your agent:
search_places(query, location, max_results)— keyword + location searchplace_details(place_id)— full record for a Google place_idlist_reviews(place_id, max_reviews)— reviews with author / rating / date / textgeocode_address(address)— string → lat / long + structured componentsreverse_geocode(lat, lng)— lat / long → best-match addressnearby_places(lat, lng, type, radius)— places within a radius by categoryautocomplete(query, location)— Google Maps autocomplete suggestions
Each tool returns structured JSON conformant to a stable MCP schema your agent can rely on.
Use Cases
- AI travel agents — "find me three highly-rated ramen places near my hotel" — the agent calls
search_places+list_reviewsand synthesizes - AI sales SDRs — "build me a list of every dental office in Austin TX with a website" —
search_places+place_details - Customer-support bots — resolve "what's the closest store with stock" by
nearby_placesover your branch list - Real-estate buyer agents — enrich a listing with
nearby_places(type=school)andplace_details - Logistics planners — batch-geocode a CSV of addresses with
geocode_address - Local-SEO research bots — audit competitor ratings + review velocity via
list_reviews - Voice / chat assistants — power "near me" intents without sending the user out to Google Maps
Quick Start (MCP)
Configure Claude Desktop / Cursor / any MCP-compatible agent to use this Apify Actor as an MCP server:
{
"mcpServers": {
"google-maps-nexgendata": {
"url": "https://api.apify.com/v2/acts/nexgendata~google-maps-mcp-server/runs",
"auth": {"token": "YOUR_APIFY_TOKEN"}
}
}
}
Or call it directly as an Apify Actor:
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("nexgendata/google-maps-mcp-server").call(run_input={
"tool": "search_places",
"query": "coffee shop in seattle wa",
"max_results": 20,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item.get("name"), item.get("rating"))
Pricing
Pay-per-event. Small Actor Start fee plus per-tool-call fee. No monthly minimum, no seat fee. Stop paying the moment your agent stops calling.
Related NexGenData MCP Servers + Sister Actors
| Use case | Actor |
|---|---|
| Underlying Google Maps places scraper | Google Maps Scraper |
| Yelp business scraper | Yelp Business Scraper |
| Finance API surface for AI agents | Finance MCP Server |
| News + media monitoring for AI agents | News MCP Server |
| Sports + scoreboard MCP for AI agents | Sports MCP Server |
| Real-estate API for AI agents | Real Estate MCP Server |
| Developer-tool API (GitHub / npm / PyPI) for AI agents | Developer Tools MCP Server |
| Academic-research MCP (arXiv / Scholar) | Academic Research MCP Server |
| Detect hiring signals from local businesses | Hiring Signal Detector |
| Bulk B2B leads finder | B2B Leads Finder |
FAQ
**Drop-in for Google Maps Places API?**For the typical "find a business + show details + show reviews" agent flow, yes. The MCP layer means you never write Places API HTTP code — your agent calls a typed tool and gets back stable JSON.
**Does it handle multiple regions?**Yes — global. Same locale support as Google Maps itself.
**Is the schema stable for AI agents?**Yes — each tool returns a stable JSON shape with documented field names so your prompt can rely on the schema across versions.
**Auth?**Apify token only. No Google Cloud billing project required.
**How is this different from the underlying scraper?**The scraper actor is for batch ETL — you give it a query, it fills a dataset. The MCP server is for live AI-agent calls — your agent calls a tool, gets a structured response in the request-response cycle.
**Cost?**Pay-per-event — you only pay for the tool calls your agent actually makes. No monthly minimum.
**Can I combine it with Yelp?**Yes — our recommended pattern is to use Google Maps MCP for primary lookup and Yelp Business Scraper for cross-validation on US listings.
About NexGenData
NexGenData publishes 260+ buyer-intent actors covering SEC filings, YC alumni, lead generation, competitive intelligence, stock fundamentals across 30+ exchanges, and more. All pay-per-result. Browse the full catalog at https://apify.com/nexgendata?fpr=2ayu9b
How NexGenData Pricing Works
Every NexGenData actor uses pay-per-event pricing — you only pay for results that actually land in your dataset. No monthly minimum, no seat fees, no surprise overage bills.
- Actor Start: a single-event charge each time you spin the actor up (scaled to memory size)
- Result: charged per item written to the default dataset
- No charge for retries, internal proxy rotation, or failed sub-requests — those are absorbed by the platform
If you only need the data once a quarter, you only pay once a quarter. If you scale to millions of records, the unit cost stays the same.
Apify Platform Bonus
New to Apify? Sign up with the NexGenData referral link — you get free platform credits on signup (enough for several thousand free results) and you help fund the maintenance of this actor fleet.
Integration Surface
Every actor in the NexGenData catalog can be triggered from:
- Apify console — point-and-click run
- Apify API — REST + webhooks
- Apify Python / JS SDKs — programmatic batch
- Zapier, Make.com, n8n — official integrations
- MCP — many actors are exposed as MCP tools for Claude / ChatGPT / Cursor agents
- Schedules — built-in cron for daily / weekly / monthly runs
- Webhooks — POST results to any HTTPS endpoint on dataset write
Support
NexGenData maintains 260+ Apify actors and ships updates regularly. Bug reports via the Apify console issues tab get a response within 24 hours. Roadmap requests are welcome — high-demand features ship in the next version.
Home: thenextgennexus.com Full catalog: apify.com/nexgendata
You might also like
🤖 ⭐ Review Intel MCP — AI Review Analysis
nexgendata/review-intelligence-mcp-server
⭐ Reviews, ratings, product reviews, customer feedback MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Aggregate + analyze reviews across Amazon, Yelp, Trustpilot, G2, App Store via MCP — for sentiment AI workflows. Free tier available.
Stephan Corbeil
2
📱 Social MCP — AI Content & Media Search
nexgendata/social-content-mcp-server
📱 Social media, Instagram, TikTok, Twitter content MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search posts + profiles + hashtags + engagement metrics across social platforms via MCP — for social-listening AI workflows. Free tier available.
Stephan Corbeil
3
🎬 YouTube MCP — AI Video Search & Transcripts
nexgendata/youtube-media-mcp-server
🎥 YouTube videos, channels, transcripts, comments MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search videos + channel stats + transcripts + comments + trending via MCP — for video-content AI workflows. Free tier available.
Stephan Corbeil
1
🔴 Reddit MCP — AI Post & Comment Search
nexgendata/reddit-mcp-server
💬 Reddit posts, comments, subreddits, trending content MCP for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Browse + search subreddit feeds + top posts + comment threads + user history via MCP — for community-intel AI workflows. Free tier available.
Stephan Corbeil
1
💼 Jobs MCP — AI Salary & Career Search
nexgendata/job-market-mcp-server
💼 Jobs, job listings, Indeed, LinkedIn, salary data MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search job postings + salaries + company hiring trends + skills demand across major boards via MCP. Free tier available.
Stephan Corbeil
2
🏠 Real Estate MCP — AI Property Search
nexgendata/real-estate-mcp-server
🏠 Real estate, property listings, home prices, MLS data MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search properties + rentals + home valuations across Zillow, Redfin, Realtor.com via MCP. Free tier available.
Stephan Corbeil
20
🏠 Redfin MCP — AI Property Search & Data
nexgendata/redfin-mcp-server
🏘 Redfin homes, real estate, property prices, housing market MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search Redfin listings + sold history + price estimates + neighborhood data via MCP. Free tier available.
Stephan Corbeil
12
🐙 GitHub MCP — AI Code & Repo Analytics
nexgendata/github-mcp-server
🐙 GitHub repos, code search, issues, PRs, commits MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search repos + read code + issues + PRs + releases + user profiles via MCP — built for code-aware AI workflows. Free tier available.
Stephan Corbeil
6
🎓 Research MCP — AI Paper Search & Citations
nexgendata/academic-research-mcp-server
🎓 Academic research, scholarly papers, arXiv, PubMed, Google Scholar MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK). Search papers + citations + authors + abstracts via MCP — built for literature-review and research AI workflows. Free tier available.
Stephan Corbeil
8
🤖 ₿ Crypto MCP — AI Token & Market Data
nexgendata/crypto-mcp-server
₿ Crypto, Bitcoin, Ethereum, prices, market cap MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Real-time crypto prices + market cap + volume + historicals + DeFi metrics across CoinGecko + CoinMarketCap via MCP. Free tier available.
Stephan Corbeil
2
Related articles
Best MCP servers for developers
Read more
相关服务器
ArtistLens
Access the Spotify Web API to search and retrieve information about tracks, albums, artists, and playlists.
Mevzuat MCP
Programmatic access to the Turkish Ministry of Justice Legislation Information System (mevzuat.gov.tr) for searching legislation and retrieving article content.
Vincario Vehicle Data
VIN Decoder, Vehicle Market Value, OCR VIN Scanner and other API services for the automotive industry.
SearxNG MCP Server
Provides web search capabilities using a self-hosted SearxNG instance, allowing AI assistants to search the web.
NPI Registry
Search the National Provider Identifier (NPI) registry for healthcare providers and organizations in the United States.
OSRS MCP Server
Search the Old School RuneScape (OSRS) Wiki and access game data definitions.
MCP Deep Research
Performs deep web searches for information using the Tavily API.
Ollama Deep Researcher
Conducts deep research using local Ollama LLMs, leveraging Tavily and Perplexity for comprehensive search capabilities.
Local Flow
A minimal, local, GPU-accelerated RAG server for document ingestion and querying.
Brave Search
A server for Brave Search, enabling web search capabilities via its API.