ClickUp MCP Server

by v4lheru
Verified

update_list

Modify an existing ClickUp list's properties, such as name, content, or status options. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements.

Input Schema

NameRequiredDescriptionDefault
contentNoNew description or content for the list
listIdNoID of the list to update (optional if using listName instead). If you have this ID from a previous response, use it directly rather than looking up by name.
listNameNoName of the list to update - will automatically find the list by name (optional if using listId instead). Only use this if you don't already have the list ID from previous responses.
nameNoNew name for the list
statusNoNew status for the list

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "listId" ] }, { "required": [ "listName" ] } ], "properties": { "content": { "description": "New description or content for the list", "type": "string" }, "listId": { "description": "ID of the list to update (optional if using listName instead). If you have this ID from a previous response, use it directly rather than looking up by name.", "type": "string" }, "listName": { "description": "Name of the list to update - will automatically find the list by name (optional if using listId instead). Only use this if you don't already have the list ID from previous responses.", "type": "string" }, "name": { "description": "New name for the list", "type": "string" }, "status": { "description": "New status for the list", "type": "string" } }, "type": "object" }