Reference

Reference nástrojů MCP

Všechny nástroje konektoru — 71 ve 12 doménách. Značky čtení a mazání vycházejí z MCP anotací, takže klienti umí zobrazit správná potvrzení.

čtenínikdy nic neměnízápisvytváří nebo upravujedestruktivnímaže — klienti si nejprve vyžádají potvrzení
tasks.assignzápis

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

ParametrTypPovinné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.

ParametrTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
projectIdstringpovinné
bodyobjectpovinné
body.titlestringpovinné
body.descriptionanyvolitelnéTask description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears.
body.statusIdstringvolitelné
body.prioritystring: urgent | highvolitelnéOptional priority. Tasks default to no priority.
body.assigneeIdanyvolitelné
body.dueDateanyvolitelnéISO 8601 date (YYYY-MM-DD). null clears.
body.milestoneIdanyvolitelné
tasks.deletedestruktivní

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

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

Fetch a single task's full detail.

ParametrTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
tasks.listčtení

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.

ParametrTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
projectIdstringpovinnéProject id.
statusIdstringvolitelnéSingle-status filter; prefer statusIds.
statusIdsstring[]volitelnéTasks in ANY of these statuses.
excludeStatusIdsstring[]volitelné
prioritystring: urgent | highvolitelnéSingle-priority filter; prefer priorities.
prioritiesstring[]volitelné
excludePrioritiesstring[]volitelné
priorityIsEmptybooleanvolitelnéOnly tasks with no priority.
priorityIsNotEmptybooleanvolitelné
assigneeIdsstring[]volitelné
excludeAssigneeIdsstring[]volitelné
assigneeIsEmptybooleanvolitelnéOnly unassigned tasks.
assigneeIsNotEmptybooleanvolitelné
creatorIdsstring[]volitelné
excludeCreatorIdsstring[]volitelné
labelIdsstring[]volitelnéTasks with ANY of these labels.
labelIdsAllstring[]volitelnéTasks with ALL of these labels.
excludeLabelIdsstring[]volitelné
labelsIsEmptybooleanvolitelné
labelsIsNotEmptybooleanvolitelné
milestoneIdstringvolitelnéSingle-milestone filter; prefer milestoneIds.
milestoneIdsstring[]volitelné
excludeMilestoneIdsstring[]volitelné
milestoneIsEmptybooleanvolitelné
milestoneIsNotEmptybooleanvolitelné
dueOnstringvolitelné
dueBeforestringvolitelnéExclusive upper bound (YYYY-MM-DD).
dueAfterstringvolitelnéExclusive lower bound (YYYY-MM-DD).
dueFromstringvolitelnéInclusive lower bound (YYYY-MM-DD).
dueTostringvolitelnéInclusive upper bound (YYYY-MM-DD).
dueIsEmptybooleanvolitelné
dueIsNotEmptybooleanvolitelné
titleContainsstringvolitelnéCase-insensitive title search.
titleStartsWithstringvolitelné
titleNotContainsstringvolitelné
sortstring: created_at | updated_at | due_date | priority | status | title | numbervolitelné
orderstring: asc | descvolitelné
limitintegervolitelné
offsetintegervolitelné
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.

ParametrTypPovinné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.

ParametrTypPovinné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.

ParametrTypPovinné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.

ParametrTypPovinné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.

ParametrTypPovinné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.

ParametrTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
taskIdstringpovinné
bodyobjectpovinné
body.titlestringvolitelné
body.descriptionanyvolitelnéTask description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears.
body.statusIdstringvolitelné
body.priorityanyvolitelnéPriority, or null to clear.
body.assigneeIdanyvolitelné
body.dueDateanyvolitelnéISO 8601 date (YYYY-MM-DD). null clears.
body.milestoneIdanyvolitelné
tasks.watchzápis

Explicitly subscribe to a task's notifications. Idempotent.

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

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

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

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.

ParametrTypPovinnéPopis
workspaceSlugstringpovinnéWorkspace slug (from workspaces.list).
limitintegervolitelné
offsetintegervolitelné

Každý nástroj zveřejňuje úplné JSON schéma přes tools/list — přesné argumenty ukáže inspektor nástrojů vašeho klienta; v Claude Code je to /mcp