ClickUp MCP Server

by v4lheru
Verified

add_task_link

Create a link between two tasks. Unlike dependencies, links are just references between related tasks without enforcing completion order.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
linksToYesID of the task to link to
taskIdYesID of the task to initiate the link from
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 task to link to", "type": "string" }, "taskId": { "description": "ID of the task to initiate the link from", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId", "linksTo" ], "type": "object" }