Token costs
MCP route-backed tool calls use the same token pricing as REST API routes. Most read tools cost 0.2 tokens per successful call. Write tools cost 0.4 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.
The limit that matters is the first one you reach. A busy AI tool can hit the MCP application or agent limit even when the rest of the organization is still below its limit.
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.”