MCP Server (coming soon)
MeCrawl MCP will let AI agents search and export Google Maps business data in natural language. It is not live yet — use the User Business API with Claude, ChatGPT, Gemini, or any HTTP client today while we build first-class MCP support.
Coming soon
-
Create a free MeCrawl account or sign in (required).
-
Generate a Personal Access Token in Dashboard → API Tokens and use the User Business API today.
-
Wire your agent or HTTP client to places and categories endpoints with Bearer auth.
-
When MCP ships: add the MCP server URL to Claude, ChatGPT, or any MCP-compatible client (planned).
mcp-client.py
# landing.mockup_code.connect
from mcp import Client
client = Client("MeCrawl")
results = client.search(
query="landing.mockup_code.query",
rating_min=4.0,
has_email=True
)
# → landing.mockup_code.results
print(results[0])
# {"name": "The Coffee House",
# "phone": "028 7108 8088", ...}