Usage and limits

Read job board quotas and design MCP scripts around API, batch, and sandbox limits.

Check usage before a bulk workflow so the agent can stop before it hits an account limit.

Read current usage

javascript
async () => {
const response = await cavuno.request({ method: 'GET', path: '/usage' });
return response.data;
}

Design within limits

The live OpenAPI schema is the authority for resource and batch limits. MCP executions also run in bounded, fresh Cloudflare Worker isolates: there is no persistent state, filesystem, or unrestricted outbound network, and long scripts should finish within a few seconds.

For large jobs, split work into restartable batches, save progress outside MCP, and verify every result. A well-formed batch can contain individual failed operations, so inspect each item rather than relying only on the top-level HTTP status.