clickup_task_add_dep
Create blocking dependencies between ClickUp tasks to manage workflow sequences. Specify which task must complete before another can proceed.
Instructions
Create a dependency relationship between two tasks — either 'task_id depends on depends_on' (blocks until that is done) or 'dependency_of depends on task_id' (task_id blocks that). Provide exactly one of depends_on or dependency_of. Use clickup_task_link for a simple non-blocking reference. Returns an empty object on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dependency_of | No | ID of a task that depends on task_id (that task is blocked until task_id is complete). Obtain from clickup_task_list. Mutually exclusive with depends_on. | |
| depends_on | No | ID of a task that task_id should wait for (task_id is blocked until depends_on is complete). Obtain from clickup_task_list. Mutually exclusive with dependency_of. | |
| task_id | Yes | ID of the primary task. Obtain from clickup_task_list (field: id). |