HourLedger — Work Hours & Overtime Calculator

Created By
wudongjie15 hours ago
Calculate work hours, overtime, and gross pay with tested rulesets for US federal, California, Alaska, Colorado, and Nevada law. Handles overnight shifts, rounding policies, and workweek start. Local, no API key, no data leaves your machine.
Overview

What it does

hourledger-mcp gives AI assistants the same tested pay-rules engine that powers hourledger.com. Ask a messy real-world question — "I worked Monday to Thursday 7am–5pm at $19/hour in Nevada, what's my gross pay?" — and the assistant calls the calculator instead of doing payroll arithmetic from memory.

Tools

calculate_work_hours

Clock in/out entries with unpaid breaks, an hourly rate, and a ruleset — returns the per-day and total regular / overtime / double-time split plus gross pay.

RulesetRule
federal1.5× past 40 h/week (FLSA)
california1.5× past 8 h/day, 2× past 12 h/day, 7th-day rule, no pyramiding
alaska1.5× past 8 h/day or 40 h/week
colorado1.5× past 12 h/day or 40 h/week (COMPS Order)
nevadadaily 8 h rule only below 1.5× minimum wage — applied automatically from the rate (NRS
608.018)

Handles overnight shifts, per-entry rounding (exact / 5 min / 15 min / 0.1 h), and configurable workweek start day. Every pay rule is covered by the automated test suite (27 tests in the repo).

time_and_a_half

An hourly rate and overtime hours — returns the 1.5× rate and total overtime pay.

Try it

  • "What's time and a half of $24/hour, and what would 6 overtime hours pay?"
  • "I work in Nevada, Mon–Thu 7am–5pm. Compare my weekly pay at $15/hour vs $20/hour." — watch daily overtime appear below Nevada's $18 cutoff and disappear above it.
  • "I'm in California at $22/hour. Monday I worked 6am–7pm, Tuesday 10pm–6am overnight. Break down my regular, overtime, and double time pay."

Privacy

Runs locally over stdio. No API key, no account, no data leaves your machine.

Server Config

{
  "mcpServers": {
    "hourledger": {
      "command": "npx",
      "args": [
        "-y",
        "hourledger-mcp"
      ]
    }
  }
}
Project Info
Created At
15 hours ago
Updated At
15 hours ago
Author Name
wudongjie
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Shippo
@Shippo

16 hours ago
Linkpulse

11 hours ago
Puter Mcp

a day ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

8 hours ago