Referencia

Referencia nástrojov MCP

Všetky nástroje konektora — 71 v 12 doménach. Značky čítania a mazania vychádzajú z MCP anotácií, takže klienti vedia zobraziť správne potvrdenia.

čítanienikdy nič nemenízápisvytvára alebo upravujedeštruktívnemaže — klienti si najprv vyžiadajú potvrdenie
tasks.assignzápis

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
assigneeIdanypovinnéUser id to assign, or null to unassign.
tasks.createzápis

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.

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
projectIdstringpovinné
bodyobjectpovinné
body.titlestringpovinné
body.descriptionanyvoliteľnéTask description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears.
body.statusIdstringvoliteľné
body.prioritystring: urgent | highvoliteľnéOptional priority. Tasks default to no priority.
body.assigneeIdanyvoliteľné
body.dueDateanyvoliteľnéISO 8601 date (YYYY-MM-DD). null clears.
body.milestoneIdanyvoliteľné
tasks.deletedeštruktívne

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.getčítanie

Fetch a single task's full detail.

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.listčítanie

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.

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
projectIdstringpovinnéProject id.
statusIdstringvoliteľnéSingle-status filter; prefer statusIds.
statusIdsstring[]voliteľnéTasks in ANY of these statuses.
excludeStatusIdsstring[]voliteľné
prioritystring: urgent | highvoliteľnéSingle-priority filter; prefer priorities.
prioritiesstring[]voliteľné
excludePrioritiesstring[]voliteľné
priorityIsEmptybooleanvoliteľnéOnly tasks with no priority.
priorityIsNotEmptybooleanvoliteľné
assigneeIdsstring[]voliteľné
excludeAssigneeIdsstring[]voliteľné
assigneeIsEmptybooleanvoliteľnéOnly unassigned tasks.
assigneeIsNotEmptybooleanvoliteľné
creatorIdsstring[]voliteľné
excludeCreatorIdsstring[]voliteľné
labelIdsstring[]voliteľnéTasks with ANY of these labels.
labelIdsAllstring[]voliteľnéTasks with ALL of these labels.
excludeLabelIdsstring[]voliteľné
labelsIsEmptybooleanvoliteľné
labelsIsNotEmptybooleanvoliteľné
milestoneIdstringvoliteľnéSingle-milestone filter; prefer milestoneIds.
milestoneIdsstring[]voliteľné
excludeMilestoneIdsstring[]voliteľné
milestoneIsEmptybooleanvoliteľné
milestoneIsNotEmptybooleanvoliteľné
dueOnstringvoliteľné
dueBeforestringvoliteľnéExclusive upper bound (YYYY-MM-DD).
dueAfterstringvoliteľnéExclusive lower bound (YYYY-MM-DD).
dueFromstringvoliteľnéInclusive lower bound (YYYY-MM-DD).
dueTostringvoliteľnéInclusive upper bound (YYYY-MM-DD).
dueIsEmptybooleanvoliteľné
dueIsNotEmptybooleanvoliteľné
titleContainsstringvoliteľnéCase-insensitive title search.
titleStartsWithstringvoliteľné
titleNotContainsstringvoliteľné
sortstring: created_at | updated_at | due_date | priority | status | title | numbervoliteľné
orderstring: asc | descvoliteľné
limitintegervoliteľné
offsetintegervoliteľné
tasks.mutezápis

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.set_labelszápis

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
labelIdsstring[]povinnéFull label set for the task. Replaces existing labels. Pass [] to clear.
tasks.set_statuszápis

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
statusIdstringpovinnéTarget status id (from `statuses.list`).
tasks.unmutezápis

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.unwatchzápis

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.updatezápis

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.

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
bodyobjectpovinné
body.titlestringvoliteľné
body.descriptionanyvoliteľnéTask description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears.
body.statusIdstringvoliteľné
body.priorityanyvoliteľnéPriority, or null to clear.
body.assigneeIdanyvoliteľné
body.dueDateanyvoliteľnéISO 8601 date (YYYY-MM-DD). null clears.
body.milestoneIdanyvoliteľné
tasks.watchzápis

Explicitly subscribe to a task's notifications. Idempotent.

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.watch_getčítanie

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

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.watched_listčítanie

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.

ParameterTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
limitintegervoliteľné
offsetintegervoliteľné

Každý nástroj zverejňuje úplnú JSON schému cez tools/list — presné argumenty ukáže inšpektor nástrojov vášho klienta; v Claude Code je to /mcp