ClickUp MCP Server

by v4lheru
Verified

delete_task_link

Remove a link between two tasks. This removes the reference between the tasks.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
linksToYesID of the second task in the link
taskIdYesID of the first task in the link
teamIdNoTeam ID (required when customTaskIds is true)

Input Schema (JSON Schema)

{ "properties": { "customTaskIds": { "description": "Whether to use custom task IDs", "type": "boolean" }, "linksTo": { "description": "ID of the second task in the link", "type": "string" }, "taskId": { "description": "ID of the first task in the link", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId", "linksTo" ], "type": "object" }