addTimeEntry
Track work hours by adding time entries to projects using Clockify MCP. Specify project ID, description, start, and end times for accurate time management.
Instructions
Add a time entry to a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Description of the time entry | |
end | Yes | End time (ISO8601) | |
projectId | Yes | Clockify project ID | |
start | Yes | Start time (ISO8601) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the time entry",
"type": "string"
},
"end": {
"description": "End time (ISO8601)",
"type": "string"
},
"projectId": {
"description": "Clockify project ID",
"type": "string"
},
"start": {
"description": "Start time (ISO8601)",
"type": "string"
}
},
"required": [
"projectId",
"description",
"start",
"end"
],
"type": "object"
}