ClickUp MCP Server

by v4lheru
Verified

remove_tag_from_task

Remove a tag from a task. This does not delete the tag from the Space, just removes it from the specific task.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
tagNameYesName of the tag to remove
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 remove", "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" }