Log finished work
clockify_log_timeLog a completed time entry to Clockify with start time, optional duration or end, and details like project, task, tags. Times are interpreted in the account's local timezone.
Instructions
Writes a completed time entry. Times are local to the account's zone, so "yesterday 09:00 for 2h30m" lands where a person expects it to.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End time, local. Give this or `duration`. | |
| date | No | Day the work happened: `2026-08-05`, `today` (default) or `yesterday` | |
| start | Yes | Start time, local: `09:00`, or a full ISO instant | |
| tag_ids | No | Tag ids | |
| task_id | No | Task id | |
| user_id | No | User id, or `me` (default) for the owner of the API key. | |
| billable | No | Mark the entry billable | |
| duration | No | Length instead of an end time: `2h30m`, `90m`, `1.5h`, `PT2H30M` | |
| tag_names | No | Tag names instead of ids | |
| task_name | No | Task name instead of the id; needs a project | |
| project_id | No | Project id | |
| description | No | What was worked on | |
| project_name | No | Project name instead of the id; must be unambiguous | |
| workspace_id | No | Workspace id. Falls back to CLOCKIFY_WORKSPACE_ID, then to the account's active workspace. |