Work Timer
FreeNot checkedAn MCP server for time tracking and billing that allows freelancers to control timers, manage projects, and export invoices via natural language in any MCP-comp
About
An MCP server for time tracking and billing that allows freelancers to control timers, manage projects, and export invoices via natural language in any MCP-compatible AI assistant.
README
Current version: 1.3.32
A zero-cost, open-source work timer and billing tool built for solo contractors and freelancers. Control it with natural language through any MCP-compatible AI assistant (Claude, Cursor, etc.) or via the command line.
Features
- Natural language control — "Start a timer for Project Alpha", "How much time on Client X this month?"
- MCP server — Works with Claude Desktop, ChatGPT, GitHub Copilot, Cursor, and any MCP-compatible client
- Expanded CLI integrations — Auto-installer supports Claude Code, OpenAI Codex CLI, and Google Gemini CLI command-based MCP registration
- Built-in MCP help —
work_timer_helpexplains capabilities, workflows, and example usage for LLMs/users - MCP auto-installer — Programmatically detects and patches supported local MCP client configs with backup + dry-run support
- CLI — Full command-line interface for quick manual use
- Built-in maintenance — Includes
work-timer update,work-timer uninstall, and update-available prompts - Safe destructive operations — Confirmation flow in CLI and
dry_run+confirm_phrasesafety gates in MCP for destructive actions - Session time correction — Adjust start/end times in local time while storing UTC safely
- Local-time UX — Displays and date filters are local-time aware while database storage remains UTC
- Overlapping timers — Bill multiple clients simultaneously
- Flexible billing — Per-project rates, currencies, and minimum billing blocks with global defaults
- Invoice tracking — Mark sessions as invoiced and paid with reference numbers
- Export — CSV, Excel (XLSX), and accounting-specific presets (QuickBooks, Xero, FreshBooks, Sage, MYOB)
- Modern XLSX export — Excel exports use a smaller maintained writer dependency instead of the older
exceljsstack - Cloud sync — Turso database means your data is accessible from any device
- Free — Turso free tier (9GB, 500M reads/mo) is more than enough for any solo practice
Quick Start
1. Install
Windows PowerShell (one line):
irm https://raw.githubusercontent.com/JoelBondoux/Work-Timer/master/install.ps1 | iex
macOS / Linux (one line):
curl -fsSL https://raw.githubusercontent.com/JoelBondoux/Work-Timer/master/install.sh | bash
These scripts auto-detect whether your local Work-Timer folder already exists and then clone or update, install dependencies, build, and run npm link.
For production pinning, replace master in the URL with a release tag such as v1.3.32.
Faster branch-testing options:
- Skip build: set
WORK_TIMER_SKIP_BUILD=1 - Skip global relink: set
WORK_TIMER_SKIP_LINK=1 - Existing valid
~/Work-Timerinstalls are updated in place - If the target folder exists but is not a Work-Timer install, it is moved to a timestamped backup and installation continues in the requested folder
- If an existing Work-Timer install has uncommitted changes, installer stops by default; generated
dist/-only changes are ignored, and you can still setWORK_TIMER_ALLOW_DIRTY=1when you intentionally want to proceed - Dirty-state errors include the active branch and a preview of blocking files to speed up cleanup
- When only generated tracked files in
dist/are changed, installer now resetsdist/before pull to avoid fast-forward conflicts during update - If the installed version already matches the requested version, installer asks whether to
repair(reinstall deps/rebuild/relink) orcancel - In non-interactive environments, set
WORK_TIMER_REPAIR_MODE=repairto force repair, orWORK_TIMER_REPAIR_MODE=cancelto skip
Windows users:
npm linkmay require adding npm's global bin to your PATH and setting PowerShell's execution policy. See the Setup Guide for details.
2. Set Up Database
Create a free Turso account and set up a database:
Via web dashboard (recommended for Windows): Go to app.turso.tech, create a database, and copy the database URL and auth token from the database settings.
Via CLI (macOS / Linux):
curl -sSfL https://get.tur.so/install.sh | bash
turso auth login
turso db create work-timer
turso db show work-timer --url # Copy this
turso db tokens create work-timer # Copy this
Run the setup wizard:
work-timer setup
Keep Work-Timer and the MCP server up to date from GitHub:
work-timer update
If you need to bootstrap a broken older install manually, use the same tarball install path as work-timer update: (this also helps when npm PATH resolution is inconsistent in older global installs)
npm install -g https://codeload.github.com/JoelBondoux/Work-Timer/tar.gz/refs/heads/master
Optional: auto-register Work-Timer in detected local MCP clients:
work-timer mcp install --dry-run
work-timer mcp install --create-missing
Or set environment variables:
export TURSO_DATABASE_URL="libsql://your-db-url.turso.io"
export TURSO_AUTH_TOKEN="your-token"
3. Start Tracking
Via CLI:
work-timer start "Client Alpha"
# ... work for a while ...
work-timer stop
work-timer query "Client Alpha"
Via AI assistant (MCP):
Add to your MCP client configuration (Claude Desktop, ChatGPT, GitHub Copilot, Cursor — see Setup Guide for each):
{
"mcpServers": {
"work-timer": {
"command": "node",
"args": ["/path/to/Work-Timer/dist/mcp/server.js"]
}
}
}
Then just talk naturally:
"Start a timer for the Website Redesign project" "Pause the timer" "How much time have I spent on Website Redesign this week?" "Export my billing for January as Excel" "How does Work-Timer work?"
Documentation
| Guide | Description |
|---|---|
| Setup Guide | Full installation and configuration instructions |
| CLI Reference | Every CLI command with examples |
| MCP Tools Reference | Every MCP tool with parameters and example prompts |
| Configuration | Global defaults, project settings, environment variables |
| Billing Logic | How duration, rounding, and amounts are calculated |
| Export Guide | CSV and XLSX export formats and accounting software import |
| Invoicing Guide | Tracking invoices and payments |
| Roadmap | Planned future enhancements and priorities |
| Contributing | Developer setup, architecture, and PR guidelines |
How It Works
Work-Timer stores all data in a Turso cloud database (a hosted SQLite-compatible service). This means:
- Your time data syncs across all your devices automatically
- No server to run or maintain
- The free tier is generous enough for any solo contractor
- All timestamps are stored in UTC for consistency
Both the MCP server and CLI use the same core logic, so behavior is identical regardless of how you interact with Work-Timer.
Architecture
src/
types.ts # Shared TypeScript interfaces
db/
schema.ts # Database schema and migrations
client.ts # Turso client management
core/
timer.ts # Start/stop/pause/resume logic
projects.ts # Project CRUD operations
billing.ts # Duration and billing calculations
settings.ts # Global default settings
sessions.ts # Session queries and invoice marking
export.ts # CSV, XLSX, and accounting preset export
presets.ts # Accounting software export presets
format.ts # Text formatting for output
mcp/
server.ts # MCP server with 21 tool definitions
cli/
index.ts # CLI entry point with Commander.js
License
Install Work Timer in Claude Desktop, Claude Code & Cursor
unyly install work-timerInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add work-timer -- npx -y work-timerFAQ
Is Work Timer MCP free?
Yes, Work Timer MCP is free — one-click install via Unyly at no cost.
Does Work Timer need an API key?
No, Work Timer runs without API keys or environment variables.
Is Work Timer hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Work Timer in Claude Desktop, Claude Code or Cursor?
Open Work Timer on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Stripe
Payments, customers, subscriptions
by Stripemalamutemayhem/unclick-agent-native-endpoints
110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n
by malamutemayhemwhiteknightonhorse/APIbase
Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa
by whiteknightonhorsetrackerfitness729-jpg/sitelauncher-mcp-server
Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr
Compare Work Timer with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All finance MCPs
