A macOS menu bar app for tracking your Claude Pro/Max usage limits.
- Shows usage percentage directly in the menu bar
- Tracks both session (5-hour) and weekly (7-day) limits
- Customizable display format and progress indicators
- Optional notifications when approaching limits
- Auto-refresh at configurable intervals
- Native macOS look and feel
# Clone the repository
git clone https://github.com/csinko/seekers.git
cd seekers
# Install dependencies
npm install
# Build the app
npm run tauri buildThe built app will be at src-tauri/target/release/bundle/macos/Seekers.app
npm run tauri devTo track your Claude usage, you'll need to get your credentials from claude.ai:
- Log into claude.ai
- Open DevTools (
Cmd + Option + I) - Go to Application tab
- In the left sidebar, expand Cookies >
https://claude.ai - Find the cookie named
sessionKey - Copy its value (starts with
sk-ant-sid01-...)
- While on claude.ai, look at the URL
- It should look like:
https://claude.ai/chat/...orhttps://claude.ai/organizations/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/... - If you see
/organizations/in the URL, copy that UUID - If not, open DevTools Network tab, refresh, and look for any request to
api.claude.ai- the org ID will be in the request path
- Click the Seekers icon in your menu bar
- Select Settings...
- Paste your Organization ID and Session Key
- Settings save automatically
- Session only - Show 5-hour usage
- Weekly only - Show 7-day usage
- Both - Show both (e.g., "42/18")
- Higher value - Show whichever is higher
Choose from circles, blocks, bar, or dots for the dropdown menu progress indicator.
Set thresholds to get notified when approaching limits.
Credentials are stored locally at ~/.config/seekers/credentials.json with secure file permissions (0600 - owner read/write only).
Settings are stored at ~/.config/seekers/settings.json.
This is an unofficial app and is not affiliated with Anthropic. It uses Claude's unofficial API which may change at any time. Use at your own discretion.
MIT