harvest_time_report
Generate detailed time reports for specific date ranges, with optional filtering by user, project, or client to track work hours and activities.
Instructions
Generate detailed time reports for date ranges. Use about {"tool": "harvest_time_report"} for filtering options and examples.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | No | Filter by client ID | |
from | Yes | Start date (YYYY-MM-DD) | |
project_id | No | Filter by project ID | |
to | Yes | End date (YYYY-MM-DD) | |
user_id | No | Filter by user ID |
Input Schema (JSON Schema)
{
"properties": {
"client_id": {
"description": "Filter by client ID",
"type": "string"
},
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"project_id": {
"description": "Filter by project ID",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"user_id": {
"description": "Filter by user ID",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
}