tosea_get_quota_status
Check quota usage for ToseaAI presentation features to monitor available resources and plan document-to-presentation workflows.
Instructions
Inspect quota status for all features or a single feature key.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| feature_key | No |
Implementation Reference
- src/tools.ts:72-83 (handler)Registration and handler definition for tosea_get_quota_status tool in src/tools.ts. The handler delegates to the ToseaClient's getQuotaStatus method.
server.tool( "tosea_get_quota_status", "Inspect quota status for all features or a single feature key.", { feature_key: z.string().min(1).optional() }, async ({ feature_key }) => { try { return asToolResult(await client.getQuotaStatus(feature_key)); } catch (error) { throw wrapToolError(error); } } );