ClickUp MCP Server

by v4lheru
Verified

edit_checklist_item

Update an individual line item in a task checklist. Use this to rename, reassign, mark as resolved, or nest items.

Input Schema

NameRequiredDescriptionDefault
assigneeNoUser ID to assign the checklist item to, or null to remove assignment
checklistIdYesID of the checklist containing the item
checklistItemIdYesID of the checklist item to edit
nameNoNew name for the checklist item
parentNoID of the parent checklist item for nesting, or null to make it a top-level item
resolvedNoWhether the item is resolved (completed) or not

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "User ID to assign the checklist item to, or null to remove assignment", "type": [ "number", "null" ] }, "checklistId": { "description": "ID of the checklist containing the item", "type": "string" }, "checklistItemId": { "description": "ID of the checklist item to edit", "type": "string" }, "name": { "description": "New name for the checklist item", "type": "string" }, "parent": { "description": "ID of the parent checklist item for nesting, or null to make it a top-level item", "type": [ "string", "null" ] }, "resolved": { "description": "Whether the item is resolved (completed) or not", "type": "boolean" } }, "required": [ "checklistId", "checklistItemId" ], "type": "object" }