ConvertFleet MCP documentation
One endpoint that gives any AI agent live web data: local business leads, contact details, ad intelligence, search results and page content, social posts, product catalogues, YouTube data and transcripts, email validation and media links.
https://convertfleet.online/mcp
Streamable HTTP (JSON-RPC 2.0) · MCP spec 2025-06-18 · auth Authorization: Bearer <token> or OAuth 2.1 · 22 tools + 5 helpers.
Start here
What an agent gets on connect
The server answers initialize with usage instructions that most clients place directly in the model's system prompt, so a connected agent already knows what the tools are for, that slow runs return a job handle to poll, and which errors must not be retried. It also publishes:
- Rich tool descriptions — every tool states when to use it, what it is not for (and which tool to use instead), the fields it returns, and a working example argument object.
- Routing helpers —
find_toolturns "find dentists in Miami and their emails" into the right tool with ready-to-send arguments;convertfleet_guideserves this documentation in-band;account_statusreports the plan, remaining runs and permitted tools. None of them consume quota. - Prompts — the 7 recipes are exposed as MCP prompts, so clients can offer them as ready-made workflows.
- Resources —
convertfleet://guide,convertfleet://catalog,convertfleet://recipes,convertfleet://errors,convertfleet://tools/{slug}.
Tool categories
Your first call
curl -sN https://convertfleet.online/mcp \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
Create a token in your dashboard → MCP / Agents. Scoped cfm- tokens are limited to the exact tools you tick; your account sk- key also works.
convertfleet_guide tool.