Harvest MCP Server

by taiste
Verified

create_time_entry

Track time spent on specific projects and tasks by creating time entries with project ID, task ID, date, and hours. Add optional notes for detailed insights.

Instructions

Create a new time entry.

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 spent_date: The date when the time was spent (YYYY-MM-DD) hours: The number of hours spent notes: Optional notes about the time entry

Input Schema

NameRequiredDescriptionDefault
hoursYes
notesNo
project_idYes
spent_dateYes
task_idYes

Input Schema (JSON Schema)

{ "properties": { "hours": { "title": "Hours", "type": "number" }, "notes": { "default": null, "title": "Notes", "type": "string" }, "project_id": { "title": "Project Id", "type": "integer" }, "spent_date": { "title": "Spent Date", "type": "string" }, "task_id": { "title": "Task Id", "type": "integer" } }, "required": [ "project_id", "task_id", "spent_date", "hours" ], "title": "create_time_entryArguments", "type": "object" }

You must be authenticated.

Other Tools from Harvest MCP Server

Related Tools

ID: 7o01bz99oc