clickup_tag_create
Create custom tags in ClickUp spaces to organize tasks with unique names and optional color coding. Tags must be defined before applying them to tasks for better project management.
Instructions
Define a new tag in a ClickUp space. Tags are space-scoped and must be created before they can be applied to tasks via clickup_task_add_tag. Note: create uses tag_fg/tag_bg, but clickup_tag_update uses fg_color/bg_color (API inconsistency). Returns an empty object on success; use clickup_tag_list to see the created tag.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Tag name (e.g. 'blocked', 'priority'). Must be unique within the space. | |
| space_id | Yes | ID of the space to create the tag in. Obtain from clickup_space_list (field: id). | |
| tag_bg | No | Pill (background) hex colour including leading '#' (e.g. '#FF0000'). Omit for default. | |
| tag_fg | No | Text (foreground) hex colour including leading '#' (e.g. '#FFFFFF'). Omit for default. |