FreeAgent MCP Server

MIT License
1
  • Linux
  • Apple

create_timeslip

Create a new timeslip

Input Schema

NameRequiredDescriptionDefault
commentNoOptional comment
dated_onYesDate (YYYY-MM-DD)
hoursYesHours worked (e.g. "1.5")
projectYesProject URL
taskYesTask URL
userYesUser URL

Input Schema (JSON Schema)

{ "properties": { "comment": { "description": "Optional comment", "type": "string" }, "dated_on": { "description": "Date (YYYY-MM-DD)", "type": "string" }, "hours": { "description": "Hours worked (e.g. \"1.5\")", "type": "string" }, "project": { "description": "Project URL", "type": "string" }, "task": { "description": "Task URL", "type": "string" }, "user": { "description": "User URL", "type": "string" } }, "required": [ "task", "user", "project", "dated_on", "hours" ], "type": "object" }