Open-source web dashboard tracks Claude token usage for remote workflows

A developer has open-sourced react-ai-token-monitor, a web-based dashboard for tracking Claude token usage in remote and headless environments. The tool was created because existing desktop monitoring tools don't work well for server, dev container, CI, or SSH workflows.
Key Details
The dashboard parses local ~/.claude/projects/**/*.jsonl files in real-time using a chokidar watcher with Server-Sent Events (SSE) for live updates. It calculates costs based on current API pricing for Opus, Sonnet, and Haiku models plus cache read/write operations.
Features include:
- Model breakdowns
- Cache efficiency donut charts
- GitHub-style activity heatmap
- Weekly and monthly trends
- 3D overview graph (pure SVG)
- Dark theme
- No external API calls - all data stays local
The developer's own usage data from March 2026 showed:
- 6.6 million tokens consumed
- $4,808 equivalent value at API pricing
- 129 sessions
- Cache reads dominated usage with 100% efficiency on some days (2.14M+ cached tokens)
- High-token days (997K peak) weren't always the most productive
- Haiku appeared more via cache than expected
Setup and Usage
To run the tool:
npm install && npm run devThe server binds to 0.0.0.0 for network access from phones or browsers. The tool is MIT-licensed and was built using Claude Code.
The developer is seeking community feedback on additional features like CSV export, limit alerts, and multi-project support.
📖 Read the full source: r/ClaudeAI
👀 See Also

Community-voted Model Leaderboard for OpenClaw Released
A new community-voted leaderboard for models compatible with OpenClaw is now available, with Opus 4.5 currently leading.

Bernstein: A Kubernetes-like orchestrator for AI coding agents with verification and model policies
Bernstein is an orchestrator for AI coding agents that includes independent verification of agent outputs, model policy controls, 13 agent adapters, and deterministic Python-based scheduling. The project has 5000+ tests and features like circuit breakers, cost anomaly detection, and PII scanning.

RubyLLM: One Ruby Framework for All Major AI Providers
RubyLLM provides a single Ruby framework for OpenAI, Anthropic, Gemini, Ollama, and 800+ models. Features chat, vision, audio, tools, agents, streaming, and Rails integration.

MCP Server for Italian Train Data: Real-Time Delays, Departures, and Schedules in Claude
A developer built an unofficial MCP server for Trenitalia that provides five tools for querying Italian train data through Claude, including real-time departure/arrival boards, train tracking, and schedules with live delay enrichment.