ClickUp MCP Server

by v4lheru
Verified

create_checklist_item

Add a line item to a task checklist. Checklist items represent individual steps or subtasks.

Input Schema

NameRequiredDescriptionDefault
assigneeNoUser ID to assign the checklist item to
checklistIdYesID of the checklist to add an item to
nameYesName of the checklist item

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "User ID to assign the checklist item to", "type": "number" }, "checklistId": { "description": "ID of the checklist to add an item to", "type": "string" }, "name": { "description": "Name of the checklist item", "type": "string" } }, "required": [ "checklistId", "name" ], "type": "object" }