ClickUp MCP Server

by v4lheru
Verified

create_folder

Create a new folder in a ClickUp space for organizing related lists. Use this tool when you need to group multiple lists together. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. After creating a folder, you can add lists to it using create_list_in_folder.

Input Schema

NameRequiredDescriptionDefault
nameYesName of the folder
override_statusesNoWhether to override space statuses with folder-specific statuses
spaceIdNoID of the space to create the folder in (optional if using spaceName instead). If you have this ID from a previous response, use it directly rather than looking up by name.
spaceNameNoName of the space to create the folder in - will automatically find the space by name (optional if using spaceId instead). Only use this if you don't already have the space ID from previous responses.

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "spaceId" ] }, { "required": [ "spaceName" ] } ], "properties": { "name": { "description": "Name of the folder", "type": "string" }, "override_statuses": { "description": "Whether to override space statuses with folder-specific statuses", "type": "boolean" }, "spaceId": { "description": "ID of the space to create the folder in (optional if using spaceName instead). If you have this ID from a previous response, use it directly rather than looking up by name.", "type": "string" }, "spaceName": { "description": "Name of the space to create the folder in - will automatically find the space by name (optional if using spaceId instead). Only use this if you don't already have the space ID from previous responses.", "type": "string" } }, "required": [ "name" ], "type": "object" }