FreeAgent MCP Server

MIT License
1
  • Linux
  • Apple

list_timeslips

List timeslips with optional filtering

Input Schema

NameRequiredDescriptionDefault
from_dateNoStart date (YYYY-MM-DD)
nestedNoInclude nested resources
projectNoFilter by project URL
taskNoFilter by task URL
to_dateNoEnd date (YYYY-MM-DD)
updated_sinceNoISO datetime
userNoFilter by user URL
viewNoFilter view type

Input Schema (JSON Schema)

{ "properties": { "from_date": { "description": "Start date (YYYY-MM-DD)", "type": "string" }, "nested": { "description": "Include nested resources", "type": "boolean" }, "project": { "description": "Filter by project URL", "type": "string" }, "task": { "description": "Filter by task URL", "type": "string" }, "to_date": { "description": "End date (YYYY-MM-DD)", "type": "string" }, "updated_since": { "description": "ISO datetime", "type": "string" }, "user": { "description": "Filter by user URL", "type": "string" }, "view": { "description": "Filter view type", "enum": [ "all", "unbilled", "running" ], "type": "string" } }, "type": "object" }