Get the usage limits for the current user’s subscription tier
get_usage_limits
{ "type": "object", "properties": {}, "additionalProperties": false, "description": "Input schema for the get_usage_limits tool.", "$schema": "http://json-schema.org/draft-07/schema#" }
{ "type": "object", "properties": { "tier": { "type": "string", "description": "The tier associated with this tool result." }, "limits": { "type": "object", "properties": { "storage": { "type": "number", "description": "The storage associated with this tool result." }, "api_calls": { "type": "number", "description": "The api calls associated with this tool result." } }, "required": [ "storage", "api_calls" ], "additionalProperties": false, "description": "Structured limits details associated with this tool result." } }, "required": [ "tier", "limits" ], "additionalProperties": false, "description": "Structured result returned by the get_usage_limits tool.", "$schema": "http://json-schema.org/draft-07/schema#" }