ClickUp MCP Server

by v4lheru
Verified

delete_task_dependency

Remove a dependency relationship between two tasks. This allows tasks to be completed independently of each other.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
dependencyOfYesID of the task that was waiting
dependsOnYesID of the task that needed to be completed first
taskIdYesID of the task
teamIdNoTeam ID (required when customTaskIds is true)

Input Schema (JSON Schema)

{ "properties": { "customTaskIds": { "description": "Whether to use custom task IDs", "type": "boolean" }, "dependencyOf": { "description": "ID of the task that was waiting", "type": "string" }, "dependsOn": { "description": "ID of the task that needed to be completed first", "type": "string" }, "taskId": { "description": "ID of the task", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId", "dependsOn", "dependencyOf" ], "type": "object" }