get_usage
Check your API key's current usage and quota limits for the QR for Agent platform. Monitor consumption to manage your QR code generation and tracking activities.
Instructions
Get current usage and quota for your API key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools.ts:714-721 (handler)The get_usage tool is defined in packages/mcp/src/tools.ts. It calls the /api/usage endpoint.
get_usage: { description: "Get current usage and quota for your API key.", inputSchema: z.object({}), handler: async () => { return apiRequest("/api/usage"); }, },