Skip to content

Tasks

To-dos and follow-ups, including batched and idempotent writes.

11 tools — 3 read, 8 write.

ToolWhat it does
add_task_dependencywriteAdd a dependency between two tasks: taskId blocks blockedById (so blockedById is blocked by taskId).
complete_taskwriteMark a task as done.
create_subtaskwriteCreate a subtask under a parent task.
create_taskwriteCreate a new task (action item).
list_task_tagsreadList all distinct tags used on tasks in the org.
list_tasksreadList tasks in the org, optionally filtered by state, owner, priority, due range, or tags.
remove_task_dependencywriteRemove a dependency between two tasks (the taskIdblockedById blocking edge).
search_tasksreadSearch existing tasks by keyword (matches title, description, and tags, case-insensitive).
set_task_parentwriteSet (or clear) a task's parent.
update_taskwritePatch a task.
upsert_taskswriteCreate many tasks in ONE call (max 500), idempotently.

Calling these

Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.

See How the API works for auth, errors and the shared envelope.

Docs as of 2026-08-31.