The Leadmaps MCP server — European business data for any agent
Any MCP-capable client — Claude, Cursor, n8n, VS Code, custom agents — can drive Leadmaps through one HTTP endpoint. Responses use a compact “lead” field set (~60 tokens per listing) and every reply carries credits_charged, credits_remaining and a hint for the agent.
Setup
- Create your API key at app.leadmaps.io/keys (lm_test_ for the free sandbox).
- Point your client at https://mcp.leadmaps.io/mcp (Streamable HTTP, stateless).
- Authenticate with the header Authorization: Bearer <your key>.
- Best practice for agents: call count_places (free) before search_places; use create_export beyond 200 results.
{
"mcpServers": {
"leadmaps": {
"type": "http",
"url": "https://mcp.leadmaps.io/mcp",
"headers": { "Authorization": "Bearer lm_live_xxx" }
}
}
}3 copy-paste prompts
Count plumbers rated ≥ 4.5 in Nantes, then deliver the top 20 with phone and website.Find 150 real-estate agencies in Lille rated ≥ 4.4 with a website, export to CSV.List categories around “food”, then count pizzerias without a website in the Rhône department.
MCP tools
| Tool | Cost |
|---|---|
count_places | Free — always call first |
search_places | 1 credit per place returned (30-day dedup free) |
get_place | 1 credit (dedup) |
list_categories | Free |
create_export | 1 credit per delivered row |
get_export_status | Free |
FAQ
Which transport does the MCP server use?
Streamable HTTP, stateless, at https://mcp.leadmaps.io/mcp — authentication via the Authorization: Bearer header with your lm_test_ or lm_live_ key.
Which MCP clients are compatible?
Any client speaking the Streamable HTTP transport: Claude (Desktop, Code, claude.ai), Cursor, VS Code, n8n, and your own agents via the official MCP SDKs.
How does the server help my agent control its budget?
count_places, list_categories and get_export_status are free; every paid response carries credits_charged, credits_remaining and an agent hint; create_export is recommended beyond 200 results — and the account spending cap bounds everything.