MCP Server
Connect your LLM to MeCrawl's MCP server and let AI agents search and export business data through natural language.
Próximamente
-
Create a free MeCrawl account
-
Generate an API key from your dashboard
-
Add the MCP server URL to Claude, ChatGPT or any MCP-compatible client
-
Search and export leads using natural language prompts
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", ...}