ClickUp MCP Server

by v4lheru
Verified

create_checklist

Add a new checklist to a task. Checklists help organize subtasks or steps needed to complete a task.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
nameYesName of the checklist
taskIdYesID of the task to add a checklist to
teamIdNoTeam ID (required when customTaskIds is true)

Input Schema (JSON Schema)

{ "properties": { "customTaskIds": { "description": "Whether to use custom task IDs", "type": "boolean" }, "name": { "description": "Name of the checklist", "type": "string" }, "taskId": { "description": "ID of the task to add a checklist to", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId", "name" ], "type": "object" }