Coming soon

  1. Create a free MeCrawl account or sign in (required).

    Create a free MeCrawl account or sign in (required).
  2. Generate a Personal Access Token in Dashboard → API Tokens and use the User Business API today.

    Generate a Personal Access Token in Dashboard → API Tokens and use the User Business API today.
  3. Wire your agent or HTTP client to places and categories endpoints with Bearer auth.

    Wire your agent or HTTP client to places and categories endpoints with Bearer auth.
  4. When MCP ships: add the MCP server URL to Claude, ChatGPT, or any MCP-compatible client (planned).

    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", ...}