Reference

MCP tools reference

Every tool the connector exposes — 71 across 12 domains. Read-only and destructive hints follow MCP annotations, so clients can render the right confirmations.

readnever changes anythingwritecreates or updatesdestructivedeletes — clients confirm first
tasks.assignwrite

Assign or unassign a task. Pass `assigneeId: null` to clear.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
assigneeIdanyrequiredUser id to assign, or null to unassign.
tasks.createwrite

Create a task in a project. Auto-assigns the caller and auto-subscribes them to the task. Defaults to the workspace's default status when statusId is omitted.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
projectIdstringrequired
bodyobjectrequired
body.titlestringrequired
body.descriptionanyoptionalTask description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears.
body.statusIdstringoptional
body.prioritystring: urgent | highoptionalOptional priority. Tasks default to no priority.
body.assigneeIdanyoptional
body.dueDateanyoptionalISO 8601 date (YYYY-MM-DD). null clears.
body.milestoneIdanyoptional
tasks.deletedestructive

Delete a task. Comments / linked-docs follow the existing cascade.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.getread

Fetch a single task's full detail.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.listread

List tasks in a project. Filters: status / priority / assignee / creator / label / milestone (include, exclude, is-empty variants), due-date ranges, and title search (titleContains). Array filters combine as AND across fields, OR within a field. Pagination: limit (default 50, max 200), offset.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
projectIdstringrequiredProject id.
statusIdstringoptionalSingle-status filter; prefer statusIds.
statusIdsstring[]optionalTasks in ANY of these statuses.
excludeStatusIdsstring[]optional
prioritystring: urgent | highoptionalSingle-priority filter; prefer priorities.
prioritiesstring[]optional
excludePrioritiesstring[]optional
priorityIsEmptybooleanoptionalOnly tasks with no priority.
priorityIsNotEmptybooleanoptional
assigneeIdsstring[]optional
excludeAssigneeIdsstring[]optional
assigneeIsEmptybooleanoptionalOnly unassigned tasks.
assigneeIsNotEmptybooleanoptional
creatorIdsstring[]optional
excludeCreatorIdsstring[]optional
labelIdsstring[]optionalTasks with ANY of these labels.
labelIdsAllstring[]optionalTasks with ALL of these labels.
excludeLabelIdsstring[]optional
labelsIsEmptybooleanoptional
labelsIsNotEmptybooleanoptional
milestoneIdstringoptionalSingle-milestone filter; prefer milestoneIds.
milestoneIdsstring[]optional
excludeMilestoneIdsstring[]optional
milestoneIsEmptybooleanoptional
milestoneIsNotEmptybooleanoptional
dueOnstringoptional
dueBeforestringoptionalExclusive upper bound (YYYY-MM-DD).
dueAfterstringoptionalExclusive lower bound (YYYY-MM-DD).
dueFromstringoptionalInclusive lower bound (YYYY-MM-DD).
dueTostringoptionalInclusive upper bound (YYYY-MM-DD).
dueIsEmptybooleanoptional
dueIsNotEmptybooleanoptional
titleContainsstringoptionalCase-insensitive title search.
titleStartsWithstringoptional
titleNotContainsstringoptional
sortstring: created_at | updated_at | due_date | priority | status | title | numberoptional
orderstring: asc | descoptional
limitintegeroptional
offsetintegeroptional
tasks.mutewrite

Silence a task's notifications even where they would arrive automatically. The only way to opt out of a task you are assigned to.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.set_labelswrite

Replace the full label set on a task. Pass an empty array to clear all labels.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
labelIdsstring[]requiredFull label set for the task. Replaces existing labels. Pass [] to clear.
tasks.set_statuswrite

Move a task to a different status. Sugar over `tasks.update` for the agent's most common write — pair with `comments.create` for narration.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
statusIdstringrequiredTarget status id (from `statuses.list`).
tasks.unmutewrite

Lift a mute and restore whatever watch state applied before it.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.unwatchwrite

Drop an explicit watch. A task still watched automatically (assignee, author) keeps notifying — use tasks.mute to silence those.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.updatewrite

Partial update on a task (title, description, status, priority, assignee, due date, milestone). Status changes, assignee changes, and field edits emit activity-log entries and notifications to watchers.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
bodyobjectrequired
body.titlestringoptional
body.descriptionanyoptionalTask description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears.
body.statusIdstringoptional
body.priorityanyoptionalPriority, or null to clear.
body.assigneeIdanyoptional
body.dueDateanyoptionalISO 8601 date (YYYY-MM-DD). null clears.
body.milestoneIdanyoptional
tasks.watchwrite

Explicitly subscribe to a task's notifications. Idempotent.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.watch_getread

Get the caller's watch state for a task: watching, muted, and whether the watch is automatic (`auto` — derived from being assignee or author).

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
taskIdstringrequired
tasks.watched_listread

List the ids of every task the caller watches in a workspace (muted ones included) — for marking watch state across a task list without a request per task.

ParameterTypeRequiredDescription
workspaceSlugstringrequiredWorkspace slug (from workspaces.list).
limitintegeroptional
offsetintegeroptional

Each tool advertises its full JSON schema via tools/list — for exact arguments use your client's tool inspector; in Claude Code that's /mcp