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í.
tasks.assignzápisAssign or unassign a task. Pass `assigneeId: null` to clear.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné | |
| assigneeId | any | povinné | User id to assign, or null to unassign. |
tasks.createzápisCreate 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.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| projectId | string | povinné | |
| body | object | povinné | |
| body.title | string | povinné | |
| body.description | any | volitelné | Task description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears. |
| body.statusId | string | volitelné | |
| body.priority | string: urgent | high | volitelné | Optional priority. Tasks default to no priority. |
| body.assigneeId | any | volitelné | |
| body.dueDate | any | volitelné | ISO 8601 date (YYYY-MM-DD). null clears. |
| body.milestoneId | any | volitelné |
tasks.deletedestruktivníDelete a task. Comments / linked-docs follow the existing cascade.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
tasks.getčteníFetch a single task's full detail.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
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.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| projectId | string | povinné | Project id. |
| statusId | string | volitelné | Single-status filter; prefer statusIds. |
| statusIds | string[] | volitelné | Tasks in ANY of these statuses. |
| excludeStatusIds | string[] | volitelné | |
| priority | string: urgent | high | volitelné | Single-priority filter; prefer priorities. |
| priorities | string[] | volitelné | |
| excludePriorities | string[] | volitelné | |
| priorityIsEmpty | boolean | volitelné | Only tasks with no priority. |
| priorityIsNotEmpty | boolean | volitelné | |
| assigneeIds | string[] | volitelné | |
| excludeAssigneeIds | string[] | volitelné | |
| assigneeIsEmpty | boolean | volitelné | Only unassigned tasks. |
| assigneeIsNotEmpty | boolean | volitelné | |
| creatorIds | string[] | volitelné | |
| excludeCreatorIds | string[] | volitelné | |
| labelIds | string[] | volitelné | Tasks with ANY of these labels. |
| labelIdsAll | string[] | volitelné | Tasks with ALL of these labels. |
| excludeLabelIds | string[] | volitelné | |
| labelsIsEmpty | boolean | volitelné | |
| labelsIsNotEmpty | boolean | volitelné | |
| milestoneId | string | volitelné | Single-milestone filter; prefer milestoneIds. |
| milestoneIds | string[] | volitelné | |
| excludeMilestoneIds | string[] | volitelné | |
| milestoneIsEmpty | boolean | volitelné | |
| milestoneIsNotEmpty | boolean | volitelné | |
| dueOn | string | volitelné | |
| dueBefore | string | volitelné | Exclusive upper bound (YYYY-MM-DD). |
| dueAfter | string | volitelné | Exclusive lower bound (YYYY-MM-DD). |
| dueFrom | string | volitelné | Inclusive lower bound (YYYY-MM-DD). |
| dueTo | string | volitelné | Inclusive upper bound (YYYY-MM-DD). |
| dueIsEmpty | boolean | volitelné | |
| dueIsNotEmpty | boolean | volitelné | |
| titleContains | string | volitelné | Case-insensitive title search. |
| titleStartsWith | string | volitelné | |
| titleNotContains | string | volitelné | |
| sort | string: created_at | updated_at | due_date | priority | status | title | number | volitelné | |
| order | string: asc | desc | volitelné | |
| limit | integer | volitelné | |
| offset | integer | volitelné |
tasks.mutezápisSilence a task's notifications even where they would arrive automatically. The only way to opt out of a task you are assigned to.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
tasks.set_labelszápisReplace the full label set on a task. Pass an empty array to clear all labels.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné | |
| labelIds | string[] | povinné | Full label set for the task. Replaces existing labels. Pass [] to clear. |
tasks.set_statuszápisMove a task to a different status. Sugar over `tasks.update` for the agent's most common write — pair with `comments.create` for narration.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné | |
| statusId | string | povinné | Target status id (from `statuses.list`). |
tasks.unmutezápisLift a mute and restore whatever watch state applied before it.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
tasks.unwatchzápisDrop an explicit watch. A task still watched automatically (assignee, author) keeps notifying — use tasks.mute to silence those.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
tasks.updatezápisPartial 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.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné | |
| body | object | povinné | |
| body.title | string | volitelné | |
| body.description | any | volitelné | Task description as a BlockNote / TipTap JSON block array (same shape as comments.create content). null clears. |
| body.statusId | string | volitelné | |
| body.priority | any | volitelné | Priority, or null to clear. |
| body.assigneeId | any | volitelné | |
| body.dueDate | any | volitelné | ISO 8601 date (YYYY-MM-DD). null clears. |
| body.milestoneId | any | volitelné |
tasks.watchzápisExplicitly subscribe to a task's notifications. Idempotent.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
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).
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| taskId | string | povinné |
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.
| Parametr | Typ | Povinné | Popis |
|---|---|---|---|
| workspaceSlug | string | povinné | Workspace slug (from workspaces.list). |
| limit | integer | volitelné | |
| offset | integer | volitelné |
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