From superai-mcp
Use when checking AI provider rate limits, usage quotas, account capacity, or when the user says "check quota", "am I rate limited", "how much quota left", "check usage limits", "check my limits". Reads local OAuth credentials to query real account-level quotas for Claude, Codex, and Gemini.
npx claudepluginhub babywbx/superai-mcp --plugin superai-mcpThis skill is limited to using the following tools:
Check real account-level usage quotas and rate limits for Claude, Codex, and Gemini. Uses local OAuth credentials (macOS Keychain, auth.json, oauth_creds.json) — no API keys or browser cookies needed.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Check real account-level usage quotas and rate limits for Claude, Codex, and Gemini. Uses local OAuth credentials (macOS Keychain, auth.json, oauth_creds.json) — no API keys or browser cookies needed.
# Check all providers
quota()
# Check single provider
quota(provider="claude")
quota(provider="codex")
quota(provider="gemini")
# Status with quota info merged in
status(include_quota=True)
Each provider reports:
| Session | Meaning |
|---|---|
current | 5-hour rolling window |
weekly | 7-day window |
weekly_opus | 7-day Opus-specific window |
weekly_sonnet | 7-day Sonnet-specific window |
| Session | Meaning |
|---|---|
current | Primary rate limit window |
weekly | Secondary rate limit window |
| Session | Meaning |
|---|---|
pro | Pro model quota (lowest remaining across pro models) |
flash | Flash model quota (lowest remaining across flash models) |
| Provider | Source | Fallback |
|---|---|---|
| Claude | macOS Keychain (Claude Code-credentials) | ~/.claude/.credentials.json |
| Codex | ~/.codex/auth.json (or $CODEX_HOME) | — |
| Gemini | ~/.gemini/oauth_creds.json | Auto-refreshes expired tokens |
If credentials are missing or expired, the result shows success: false with a descriptive error — other providers still return normally.