ActivityWatch MCP Server

activitywatch_get_events

Get raw events from an ActivityWatch bucket

Input Schema

NameRequiredDescriptionDefault
bucketIdYesID of the bucket to fetch events from
endNoEnd date/time in ISO format (e.g. '2024-02-28T23:59:59Z')
limitNoMaximum number of events to return (default: 100)
startNoStart date/time in ISO format (e.g. '2024-02-01T00:00:00Z')

Input Schema (JSON Schema)

{ "properties": { "bucketId": { "description": "ID of the bucket to fetch events from", "type": "string" }, "end": { "description": "End date/time in ISO format (e.g. '2024-02-28T23:59:59Z')", "type": "string" }, "limit": { "description": "Maximum number of events to return (default: 100)", "type": "number" }, "start": { "description": "Start date/time in ISO format (e.g. '2024-02-01T00:00:00Z')", "type": "string" } }, "required": [ "bucketId" ], "type": "object" }