My work

My work

Tools that read and act on your worklogs, deadlines and open document tasks.

The My work tools mirror the My Work tab in plnnrly. They let an AI client log time, browse and update your worklogs, list and progress your deadlines, and see which open task-list items mention you in drive documents.

Every call runs as the user who minted the MCP token. Tenant isolation is enforced by the server, and per-tool authorization checks the user's plnnrly permissions before anything is read or written.

Tools

ToolPurpose
list-worklogs-toolList time entries, filtered by date range, project or description.
log-time-toolCreate a new time entry.
update-worklog-toolUpdate fields on an existing time entry.
list-deadlines-toolList deadlines, filtered by status, project, customer or due date.
update-deadline-status-toolMove a deadline to a different kanban column.
list-my-open-tasks-toolList open task-list items that mention you in drive documents.

Permissions at a glance

ActionPermission
List or update someone else's worklogstimes::update_others
Log time as overtimetimes::write_overtime
Log time against another user's deadlinetimes::write_on_others_deadlines
List or update your own deadlineskanban::manage_self
List or update another user's deadlineskanban::manage_for_others
List your own open tasksnone — always allowed

Permissions a user does not hold cause the tool to return an authorization error instead of silently dropping the request. The exception is overtime: a worklog with is_overtime: true from a user without times::write_overtime is saved with is_overtime: false and the response reflects that.

Common workflows

  • "Log 1h30 on the ACME website project, describing what I just did." — log-time-tool.
  • "Show me the time I logged last week." — list-worklogs-tool with date_from / date_to.
  • "What's still open in my kanban?" — list-deadlines-tool with is_finished: false.
  • "Move deadline 42 to External Test." — update-deadline-status-tool.
  • "Which tasks am I tagged in across our docs?" — list-my-open-tasks-tool.

On this page