Timesheet Calculator

Calculators REST API MCP

Return total, regular, and overtime hours plus regular, overtime, and total pay for a list of work entries (start time, end time, break). Times are HH:MM in 24-hour format; an end time before the start time is an overnight shift. Overtime is paid on hours above regular_hours_per_week at overtime_multiplier.

This page documents the HTTP endpoint POST /api/tools/timesheet-calculator/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/timesheet-calculator/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/timesheet-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "entries": [
      {
        "day": "Monday",
        "start_time": "09:00",
        "end_time": "17:00",
        "break_minutes": 60
      }
    ],
    "hourly_rate": 25
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/timesheet-calculator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
entries array yes Work entries: { day?, start_time: "09:00", end_time: "17:00", break_minutes?: 60 }. 1-100 items.
hourly_rate number no Pay per hour. Default: 0 (hours only).
include_overtime boolean no Split hours above the weekly limit into overtime. Default: true.
regular_hours_per_week number no Regular hours before overtime starts. Default: 40.
overtime_multiplier number no Overtime pay multiplier. Default: 1.5.

Example arguments (verified)

{
  "entries": [
    {
      "day": "Monday",
      "start_time": "09:00",
      "end_time": "17:00",
      "break_minutes": 60
    }
  ],
  "hourly_rate": 25
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:timesheet_calculator after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Timesheet Calculator →

More Calculators tools