ClickUp MCP Server

by v4lheru
Verified

add_tag_to_task

Add a tag to a task for better organization and filtering. Tags help categorize tasks across different lists and projects.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
tagNameYesName of the tag to add
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" }, "tagName": { "description": "Name of the tag to add", "type": "string" }, "taskId": { "description": "ID of the task", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId", "tagName" ], "type": "object" }