ClickUp MCP Server

by v4lheru
Verified

get_list

Retrieve details about a specific ClickUp list including its name, content, status options, and other metadata. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Useful to understand list structure before creating or updating tasks.

Input Schema

NameRequiredDescriptionDefault
listIdNoID of the list to retrieve (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 retrieve - 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.

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "listId" ] }, { "required": [ "listName" ] } ], "properties": { "listId": { "description": "ID of the list to retrieve (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 retrieve - 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" } }, "type": "object" }