ClickUp MCP Server

by v4lheru
Verified

edit_checklist

Rename a task checklist or reorder it among other checklists on a task.

Input Schema

NameRequiredDescriptionDefault
checklistIdYesID of the checklist to edit
nameNoNew name for the checklist
positionNoPosition of the checklist among other checklists on the task (0 places it at the top)

Input Schema (JSON Schema)

{ "properties": { "checklistId": { "description": "ID of the checklist to edit", "type": "string" }, "name": { "description": "New name for the checklist", "type": "string" }, "position": { "description": "Position of the checklist among other checklists on the task (0 places it at the top)", "type": "number" } }, "required": [ "checklistId" ], "type": "object" }