clickup_create_folder
Create a new empty folder within a ClickUp Space to organize related lists. Provide the Space ID and folder name.
Instructions
Create a Folder inside a Space.
Calls POST /space/{space_id}/folder. Folders group Lists within a
Space; a Folder created here starts empty (use the Lists tools to add
Lists to it once t3-lists lands). ClickUp's Create Folder endpoint only
accepts name in the body — to enable Folder-level statuses, call
clickup_update_folder with override_statuses=true after creating.
When to Use:
To organize related Lists under one container inside a Space.
When NOT to Use:
To create a List that doesn't need a Folder (use the folderless-list tool in
tools/lists.pyonce available).To duplicate an existing structure — use
clickup_create_folder_from_template.
Returns:
A confirmation string with the new Folder's name and id, or an
Error ... string describing the failure.
Examples: params = {"space_id": "90130912", "name": "Q3 Launches"}
Error Handling:
404 means space_id doesn't exist or isn't accessible; 400 means the
name is missing/invalid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |