ConvertFleet

MCP docsQuickstart › curl

Connect curl

Two minutes: mint a token, paste the config, list the tools.

1. Get a token

Open your dashboard → MCP / Agents and create a scoped cfm- token, ticking only the tools this agent should reach. Your account sk- key works too, but a scoped token is safer and can be revoked on its own.

2. Configure curl

# 1. list the tools this token can 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":{}}'

# 2. call one
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":2,"method":"tools/call","params":{"name":"google_maps_search","arguments":{"query":"dentists","location":"Miami, FL","limit":10}}}'

3. Verify

Ask the agent to list its ConvertFleet tools, or have it call account_status — it reports the plan, this month's usage and exactly which tools the token allows.

Tell the agent what it has. The server sends usage instructions on connect, so a well-behaved client already knows the catalog. If yours ignores them, have it call convertfleet_guide once at the start of a session.

Other clients