Token costs
MCP route-backed tool calls use the same token pricing as REST API routes. Most read tools cost 20 tokens per successful call. Write tools cost 40 tokens per successful call. The workspace list tool and utility toolstools_search and capabilities_list are free.
How limits work
Breakcold checks several limits at the same time. A tool call is blocked when any one of those limits is full.| Limit | Current budget |
|---|---|
| Organization | 600 requests per minute |
| Workspace | 300 requests per minute |
| MCP application or agent identity | 180 requests per minute |
| Route | 120 requests per minute for the same route in the same organization |
What happens when MCP is rate limited
When an MCP request is rate limited, Breakcold returns HTTP429.
MCP clients receive a JSON-RPC error with code -32029 and message Public API rate limit exceeded. When possible, Breakcold also sends a Retry-After header in seconds. The response includes an X-Request-Id header you can share with Breakcold support to look up the request.
What users should do
If your AI tool says it was rate limited, wait a moment and try again. To reduce repeated rate limits:- Ask for smaller tasks.
- Avoid asking the assistant to scan everything repeatedly.
- Let long-running workflows finish before starting another large one.
- Use the same region URL as your workspace.
What MCP client builders should do
If you build or configure an MCP client, respect theRetry-After header when it is present.
Good client behavior:
- Wait before retrying a rate-limited tool call.
- Do not retry many tool calls at the same time.
- Cache recent reads when it is safe to do so.
- Break large jobs into smaller batches.
- Show a clear message such as “Breakcold is asking us to slow down. Try again in a moment.”