start_timer
Initiate a timer for specific projects and tasks using Harvest MCP Server, allowing precise time tracking and optional notes for detailed entries.
Instructions
Start a new timer.
Args:
project_id: The ID of the project to associate with the time entry
task_id: The ID of the task to associate with the time entry
notes: Optional notes about the time entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | No | ||
project_id | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"notes": {
"default": null,
"title": "Notes",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"task_id": {
"title": "Task Id",
"type": "integer"
}
},
"required": [
"project_id",
"task_id"
],
"title": "start_timerArguments",
"type": "object"
}