Track your Claude.ai usage across multiple accounts right from your Mac menu bar.
- Multi-account support — Add multiple Claude accounts (Work, Personal, etc.), each with its own session and weekly usage bars
- Cloudflare bypass — API calls routed through a hidden WebKit instance so Cloudflare bot protection doesn't block the app
- Keyboard shortcut — Toggle popup with Cmd+U from anywhere
- Auto-refresh — Updates every 5 minutes automatically
- Privacy-first — All data (cookies, settings) stored locally in UserDefaults
- Pro plan support — Shows weekly Sonnet usage for Pro subscribers
- Menu bar only — No Dock icon, stays out of your way
- Download
ClaudeUsageMonitor-1.x.x.dmgfrom the latest release - Double-click to mount
- Drag
ClaudeUsageMonitor.appto the Applications folder - Eject the DMG
- Open ClaudeUsageMonitor from Applications
- Go to claude.ai/settings/usage
- Open Developer Tools (
Cmd+Option+I) → Network tab - Refresh the page, click the "usage" request
- Copy the full "Cookie" value from the Request Headers
On first launch, you'll see the onboarding screen. Paste your cookie and give the account a label (e.g. "Work"). You can add more accounts any time via "+ Add Account".
Requirements: macOS 12.0+, Xcode Command Line Tools
cd app && ./build.shThe app bundle is created at app/build/ClaudeUsageMonitor.app. The script compiles a universal binary (arm64 + x86_64), signs it, and opens the app automatically.
Hot-reload during development — kill the running instance, rebuild, and relaunch in one line:
pkill -x ClaudeUsageMonitor; cd app && ./build.shCreate a DMG installer:
cd app && ./create_dmg.shClaudeUsageMonitor.swift— Full application sourceInfo.plist— App bundle metadatabuild.sh— Build script (universal binary: arm64 + x86_64)create_dmg.sh— DMG installer creation
- SwiftUI — Modern macOS UI framework
- AppKit — Menu bar integration
- WebKit — Hidden WKWebView for API calls (Cloudflare bypass)
- Carbon — Global keyboard shortcut (Cmd+U)
- UserDefaults — Local storage for accounts and settings
This app uses Claude.ai's internal API endpoints which may change without notice. It is not affiliated with or endorsed by Anthropic. Use at your own risk.
Inspired by ClaudeUsageBar by Artzainnn — this fork adds multi-account support, a redesigned popup UI, and a Cloudflare bypass so the app keeps working even as Claude.ai tightens API security.
MIT License — see LICENSE for details.