clickup-automation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

ClickUp Automation via Rube MCP

通过Rube MCP实现ClickUp自动化

Automate ClickUp project management workflows including task creation and updates, workspace hierarchy navigation, comments, and team member management through Composio's ClickUp toolkit.
通过Composio的ClickUp工具包,自动化ClickUp项目管理工作流,包括任务创建与更新、工作区层级导航、评论以及团队成员管理。

Prerequisites

前提条件

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active ClickUp connection via
    RUBE_MANAGE_CONNECTIONS
    with toolkit
    clickup
  • Always call
    RUBE_SEARCH_TOOLS
    first to get current tool schemas
  • 必须已连接Rube MCP(需具备RUBE_SEARCH_TOOLS权限)
  • 通过
    RUBE_MANAGE_CONNECTIONS
    并使用
    clickup
    工具包完成ClickUp的激活连接
  • 请始终先调用
    RUBE_SEARCH_TOOLS
    以获取最新的工具架构

Setup

设置步骤

Get Rube MCP: Add
https://rube.app/mcp
as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
  1. Verify Rube MCP is available by confirming
    RUBE_SEARCH_TOOLS
    responds
  2. Call
    RUBE_MANAGE_CONNECTIONS
    with toolkit
    clickup
  3. If connection is not ACTIVE, follow the returned auth link to complete ClickUp OAuth
  4. Confirm connection status shows ACTIVE before running any workflows
获取Rube MCP:在客户端配置中添加
https://rube.app/mcp
作为MCP服务器。无需API密钥 —— 只需添加端点即可使用。
  1. 通过确认
    RUBE_SEARCH_TOOLS
    能正常响应,验证Rube MCP是否可用
  2. 调用
    RUBE_MANAGE_CONNECTIONS
    并指定工具包为
    clickup
  3. 如果连接未处于激活状态,请按照返回的授权链接完成ClickUp OAuth认证
  4. 在运行任何工作流之前,确认连接状态显示为ACTIVE

Core Workflows

核心工作流

1. Create and Manage Tasks

1. 创建与管理任务

When to use: User wants to create tasks, subtasks, update task properties, or list tasks in a ClickUp list.
Tool sequence:
  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    - Get workspace/team IDs [Prerequisite]
  2. CLICKUP_GET_SPACES
    - List spaces in the workspace [Prerequisite]
  3. CLICKUP_GET_FOLDERS
    - List folders in a space [Prerequisite]
  4. CLICKUP_GET_FOLDERLESS_LISTS
    - Get lists not inside folders [Optional]
  5. CLICKUP_GET_LIST
    - Validate list and check available statuses [Prerequisite]
  6. CLICKUP_CREATE_TASK
    - Create a task in the target list [Required]
  7. CLICKUP_CREATE_TASK
    (with
    parent
    ) - Create subtask under a parent task [Optional]
  8. CLICKUP_UPDATE_TASK
    - Modify task status, assignees, dates, priority [Optional]
  9. CLICKUP_GET_TASK
    - Retrieve full task details [Optional]
  10. CLICKUP_GET_TASKS
    - List all tasks in a list with filters [Optional]
  11. CLICKUP_DELETE_TASK
    - Permanently remove a task [Optional]
Key parameters for CLICKUP_CREATE_TASK:
  • list_id
    : Target list ID (integer, required)
  • name
    : Task name (string, required)
  • description
    : Detailed task description
  • status
    : Must exactly match (case-sensitive) a status name configured in the target list
  • priority
    : 1 (Urgent), 2 (High), 3 (Normal), 4 (Low)
  • assignees
    : Array of user IDs (integers)
  • due_date
    : Unix timestamp in milliseconds
  • parent
    : Parent task ID string for creating subtasks
  • tags
    : Array of tag name strings
  • time_estimate
    : Estimated time in milliseconds
Pitfalls:
  • status
    is case-sensitive and must match an existing status in the list; use
    CLICKUP_GET_LIST
    to check available statuses
  • due_date
    and
    start_date
    are Unix timestamps in milliseconds, not seconds
  • Subtask
    parent
    must be a task (not another subtask) in the same list
  • notify_all
    triggers watcher notifications; set to false for bulk operations
  • Retries can create duplicates; track created task IDs to avoid re-creation
  • custom_item_id
    for milestones (ID 1) is subject to workspace plan quotas
适用场景:用户需要在ClickUp列表中创建任务、子任务、更新任务属性或列出任务。
工具执行顺序:
  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    - 获取工作区/团队ID [前提步骤]
  2. CLICKUP_GET_SPACES
    - 列出工作区内的空间 [前提步骤]
  3. CLICKUP_GET_FOLDERS
    - 列出空间内的文件夹 [前提步骤]
  4. CLICKUP_GET_FOLDERLESS_LISTS
    - 获取未包含在文件夹中的列表 [可选]
  5. CLICKUP_GET_LIST
    - 验证列表并查看可用状态 [前提步骤]
  6. CLICKUP_CREATE_TASK
    - 在目标列表中创建任务 [必需]
  7. CLICKUP_CREATE_TASK
    (传入
    parent
    参数)- 在父任务下创建子任务 [可选]
  8. CLICKUP_UPDATE_TASK
    - 修改任务状态、经办人、日期、优先级 [可选]
  9. CLICKUP_GET_TASK
    - 获取完整的任务详情 [可选]
  10. CLICKUP_GET_TASKS
    - 按筛选条件列出列表中的所有任务 [可选]
  11. CLICKUP_DELETE_TASK
    - 永久删除任务 [可选]
CLICKUP_CREATE_TASK的关键参数:
  • list_id
    : 目标列表ID(整数,必填)
  • name
    : 任务名称(字符串,必填)
  • description
    : 详细的任务描述
  • status
    : 必须与目标列表中配置的状态名称完全匹配(区分大小写)
  • priority
    : 1(紧急)、2(高)、3(普通)、4(低)
  • assignees
    : 用户ID数组(整数)
  • due_date
    : 毫秒级Unix时间戳
  • parent
    : 用于创建子任务的父任务ID字符串
  • tags
    : 标签名称字符串数组
  • time_estimate
    : 预估耗时(毫秒)
注意事项:
  • status
    区分大小写,必须与列表中已存在的状态匹配;请使用
    CLICKUP_GET_LIST
    查看可用状态
  • due_date
    start_date
    毫秒级Unix时间戳,而非秒级
  • 子任务的
    parent
    必须是同一列表中的任务(不能是其他子任务)
  • notify_all
    会触发关注者通知;批量操作时请设置为false
  • 重试可能会创建重复任务;请跟踪已创建的任务ID以避免重复创建
  • 里程碑的
    custom_item_id
    (ID为1)受工作区计划配额限制

2. Navigate Workspace Hierarchy

2. 导航工作区层级

When to use: User wants to browse or manage the ClickUp workspace structure (Workspaces > Spaces > Folders > Lists).
Tool sequence:
  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    - List all accessible workspaces [Required]
  2. CLICKUP_GET_SPACES
    - List spaces within a workspace [Required]
  3. CLICKUP_GET_SPACE
    - Get details for a specific space [Optional]
  4. CLICKUP_GET_FOLDERS
    - List folders in a space [Required]
  5. CLICKUP_GET_FOLDER
    - Get details for a specific folder [Optional]
  6. CLICKUP_CREATE_FOLDER
    - Create a new folder in a space [Optional]
  7. CLICKUP_GET_FOLDERLESS_LISTS
    - List lists not inside any folder [Required]
  8. CLICKUP_GET_LIST
    - Get list details including statuses and custom fields [Optional]
Key parameters:
  • team_id
    : Workspace ID from GET_AUTHORIZED_TEAMS_WORKSPACES (required for spaces)
  • space_id
    : Space ID (required for folders and folderless lists)
  • folder_id
    : Folder ID (required for GET_FOLDER)
  • list_id
    : List ID (required for GET_LIST)
  • archived
    : Boolean filter for archived/active items
Pitfalls:
  • ClickUp hierarchy is: Workspace (Team) > Space > Folder > List > Task
  • Lists can exist directly under Spaces (folderless) or inside Folders
  • Must use
    CLICKUP_GET_FOLDERLESS_LISTS
    to find lists not inside folders;
    CLICKUP_GET_FOLDERS
    only returns folders
  • team_id
    in ClickUp API refers to the Workspace ID, not a user group
适用场景:用户需要浏览或管理ClickUp工作区结构(工作区 > 空间 > 文件夹 > 列表)。
工具执行顺序:
  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    - 列出所有可访问的工作区 [必需]
  2. CLICKUP_GET_SPACES
    - 列出工作区内的空间 [必需]
  3. CLICKUP_GET_SPACE
    - 获取特定空间的详情 [可选]
  4. CLICKUP_GET_FOLDERS
    - 列出空间内的文件夹 [必需]
  5. CLICKUP_GET_FOLDER
    - 获取特定文件夹的详情 [可选]
  6. CLICKUP_CREATE_FOLDER
    - 在空间中创建新文件夹 [可选]
  7. CLICKUP_GET_FOLDERLESS_LISTS
    - 列出未包含在任何文件夹中的列表 [必需]
  8. CLICKUP_GET_LIST
    - 获取列表详情,包括状态和自定义字段 [可选]
关键参数:
  • team_id
    : 来自GET_AUTHORIZED_TEAMS_WORKSPACES的工作区ID(获取空间时必填)
  • space_id
    : 空间ID(获取文件夹和无文件夹列表时必填)
  • folder_id
    : 文件夹ID(获取文件夹详情时必填)
  • list_id
    : 列表ID(获取列表详情时必填)
  • archived
    : 用于筛选已归档/活跃项目的布尔值
注意事项:
  • ClickUp的层级结构为:工作区(团队)> 空间 > 文件夹 > 列表 > 任务
  • 列表可以直接存在于空间下(无文件夹)或在文件夹内
  • 必须使用
    CLICKUP_GET_FOLDERLESS_LISTS
    查找未在文件夹中的列表;
    CLICKUP_GET_FOLDERS
    仅返回文件夹
  • ClickUp API中的
    team_id
    指的是工作区ID,而非用户组

3. Add Comments to Tasks

3. 为任务添加评论

When to use: User wants to add comments, review existing comments, or manage comment threads on tasks.
Tool sequence:
  1. CLICKUP_GET_TASK
    - Verify task exists and get task_id [Prerequisite]
  2. CLICKUP_CREATE_TASK_COMMENT
    - Add a new comment to the task [Required]
  3. CLICKUP_GET_TASK_COMMENTS
    - List existing comments on the task [Optional]
  4. CLICKUP_UPDATE_COMMENT
    - Edit comment text, assignee, or resolution status [Optional]
Key parameters for CLICKUP_CREATE_TASK_COMMENT:
  • task_id
    : Task ID string (required)
  • comment_text
    : Comment content with ClickUp formatting support (required)
  • assignee
    : User ID to assign the comment to (required)
  • notify_all
    : true/false for watcher notifications (required)
Key parameters for CLICKUP_GET_TASK_COMMENTS:
  • task_id
    : Task ID string (required)
  • start
    /
    start_id
    : Pagination for older comments (max 25 per page)
Pitfalls:
  • CLICKUP_CREATE_TASK_COMMENT
    requires all four fields:
    task_id
    ,
    comment_text
    ,
    assignee
    , and
    notify_all
  • assignee
    on a comment assigns the comment (not the task) to that user
  • Comments are paginated at 25 per page; use
    start
    (Unix ms) and
    start_id
    for older pages
  • CLICKUP_UPDATE_COMMENT
    requires all four fields:
    comment_id
    ,
    comment_text
    ,
    assignee
    ,
    resolved
适用场景:用户需要为任务添加评论、查看现有评论或管理任务的评论线程。
工具执行顺序:
  1. CLICKUP_GET_TASK
    - 验证任务存在并获取task_id [前提步骤]
  2. CLICKUP_CREATE_TASK_COMMENT
    - 为任务添加新评论 [必需]
  3. CLICKUP_GET_TASK_COMMENTS
    - 列出任务的现有评论 [可选]
  4. CLICKUP_UPDATE_COMMENT
    - 编辑评论内容、经办人或解决状态 [可选]
CLICKUP_CREATE_TASK_COMMENT的关键参数:
  • task_id
    : 任务ID字符串(必填)
  • comment_text
    : 支持ClickUp格式的评论内容(必填)
  • assignee
    : 要分配评论的用户ID(必填)
  • notify_all
    : 是否通知所有关注者的布尔值(必填)
CLICKUP_GET_TASK_COMMENTS的关键参数:
  • task_id
    : 任务ID字符串(必填)
  • start
    /
    start_id
    : 旧评论的分页参数(每页最多25条)
注意事项:
  • CLICKUP_CREATE_TASK_COMMENT
    需要四个必填字段:
    task_id
    comment_text
    assignee
    notify_all
  • 评论上的
    assignee
    是将评论(而非任务)分配给该用户
  • 评论按每页25条分页;使用
    start
    (毫秒级Unix时间戳)和
    start_id
    获取旧页面的评论
  • CLICKUP_UPDATE_COMMENT
    需要四个必填字段:
    comment_id
    comment_text
    assignee
    resolved

4. Manage Team Members and Assignments

4. 管理团队成员与分配

When to use: User wants to view workspace members, check seat utilization, or look up user details.
Tool sequence:
  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    - List workspaces and get team_id [Required]
  2. CLICKUP_GET_WORKSPACE_SEATS
    - Check seat utilization (members vs guests) [Required]
  3. CLICKUP_GET_TEAMS
    - List user groups within the workspace [Optional]
  4. CLICKUP_GET_USER
    - Get details for a specific user (Enterprise only) [Optional]
  5. CLICKUP_GET_CUSTOM_ROLES
    - List custom permission roles [Optional]
Key parameters:
  • team_id
    : Workspace ID (required for all team operations)
  • user_id
    : Specific user ID for GET_USER
  • group_ids
    : Comma-separated group IDs to filter teams
Pitfalls:
  • CLICKUP_GET_WORKSPACE_SEATS
    returns seat counts, not member details; distinguish members from guests
  • CLICKUP_GET_TEAMS
    returns user groups, not workspace members; empty groups does not mean no members
  • CLICKUP_GET_USER
    is only available on ClickUp Enterprise Plan
  • Must repeat workspace seat queries for each workspace in multi-workspace setups
适用场景:用户需要查看工作区成员、检查席位使用情况或查找用户详情。
工具执行顺序:
  1. CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    - 列出工作区并获取team_id [必需]
  2. CLICKUP_GET_WORKSPACE_SEATS
    - 检查席位使用情况(成员与访客)[必需]
  3. CLICKUP_GET_TEAMS
    - 列出工作区内的用户组 [可选]
  4. CLICKUP_GET_USER
    - 获取特定用户的详情(仅企业版可用)[可选]
  5. CLICKUP_GET_CUSTOM_ROLES
    - 列出自定义权限角色 [可选]
关键参数:
  • team_id
    : 工作区ID(所有团队操作必填)
  • user_id
    : GET_USER所需的特定用户ID
  • group_ids
    : 用于筛选团队的逗号分隔组ID
注意事项:
  • CLICKUP_GET_WORKSPACE_SEATS
    返回席位数量,而非成员详情;请区分成员与访客
  • CLICKUP_GET_TEAMS
    返回用户组,而非工作区成员;空组不代表没有成员
  • CLICKUP_GET_USER
    仅在ClickUp企业版计划中可用
  • 在多工作区设置中,必须为每个工作区重复查询工作区席位

5. Filter and Query Tasks

5. 筛选与查询任务

When to use: User wants to find tasks with specific filters (status, assignee, dates, tags, custom fields).
Tool sequence:
  1. CLICKUP_GET_TASKS
    - Filter tasks in a list with multiple criteria [Required]
  2. CLICKUP_GET_TASK
    - Get full details for individual tasks [Optional]
Key parameters for CLICKUP_GET_TASKS:
  • list_id
    : List ID (integer, required)
  • statuses
    : Array of status strings to filter by
  • assignees
    : Array of user ID strings
  • tags
    : Array of tag name strings
  • due_date_gt
    /
    due_date_lt
    : Unix timestamp in ms for date range
  • include_closed
    : Boolean to include closed tasks
  • subtasks
    : Boolean to include subtasks
  • order_by
    : "id", "created", "updated", or "due_date"
  • page
    : Page number starting at 0 (max 100 tasks per page)
Pitfalls:
  • Only tasks whose home list matches
    list_id
    are returned; tasks in sublists are not included
  • Date filters use Unix timestamps in milliseconds
  • Status strings must match exactly; use URL encoding for spaces (e.g., "to%20do")
  • Page numbering starts at 0; each page returns up to 100 tasks
  • custom_fields
    filter accepts an array of JSON strings, not objects
适用场景:用户需要查找符合特定筛选条件的任务(状态、经办人、日期、标签、自定义字段)。
工具执行顺序:
  1. CLICKUP_GET_TASKS
    - 按多个条件筛选列表中的任务 [必需]
  2. CLICKUP_GET_TASK
    - 获取单个任务的完整详情 [可选]
CLICKUP_GET_TASKS的关键参数:
  • list_id
    : 列表ID(整数,必填)
  • statuses
    : 用于筛选的状态字符串数组
  • assignees
    : 用户ID字符串数组
  • tags
    : 标签名称字符串数组
  • due_date_gt
    /
    due_date_lt
    : 日期范围的毫秒级Unix时间戳
  • include_closed
    : 是否包含已关闭任务的布尔值
  • subtasks
    : 是否包含子任务的布尔值
  • order_by
    : 排序依据,可选"id"、"created"、"updated"或"due_date"
  • page
    : 页码,从0开始(每页最多100条任务)
注意事项:
  • 仅返回主列表为
    list_id
    的任务;子列表中的任务不包含在内
  • 日期筛选使用毫秒级Unix时间戳
  • 状态字符串必须完全匹配;含空格的状态需使用URL编码(例如"to%20do")
  • 页码从0开始;每页最多返回100条任务
  • custom_fields
    筛选条件接受JSON字符串数组,而非对象

Common Patterns

通用模式

ID Resolution

ID解析

Always resolve names to IDs through the hierarchy:
  • Workspace name -> team_id:
    CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    and match by name
  • Space name -> space_id:
    CLICKUP_GET_SPACES
    with
    team_id
  • Folder name -> folder_id:
    CLICKUP_GET_FOLDERS
    with
    space_id
  • List name -> list_id: Navigate folders or use
    CLICKUP_GET_FOLDERLESS_LISTS
  • Task name -> task_id:
    CLICKUP_GET_TASKS
    with
    list_id
    and match by name
请始终通过层级结构将名称解析为ID:
  • 工作区名称 -> team_id: 使用
    CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
    并按名称匹配
  • 空间名称 -> space_id: 使用带
    team_id
    参数的
    CLICKUP_GET_SPACES
  • 文件夹名称 -> folder_id: 使用带
    space_id
    参数的
    CLICKUP_GET_FOLDERS
  • 列表名称 -> list_id: 遍历文件夹或使用
    CLICKUP_GET_FOLDERLESS_LISTS
  • 任务名称 -> task_id: 使用带
    list_id
    参数的
    CLICKUP_GET_TASKS
    并按名称匹配

Pagination

分页

  • CLICKUP_GET_TASKS
    : Page-based with
    page
    starting at 0, max 100 tasks per page
  • CLICKUP_GET_TASK_COMMENTS
    : Uses
    start
    (Unix ms) and
    start_id
    for cursor-based paging, max 25 per page
  • Continue fetching until response returns fewer items than the page size
  • CLICKUP_GET_TASKS
    : 基于页码的分页,
    page
    从0开始,每页最多100条任务
  • CLICKUP_GET_TASK_COMMENTS
    : 使用
    start
    (毫秒级Unix时间戳)和
    start_id
    进行基于游标分页,每页最多25条
  • 持续获取直到返回的结果数量小于每页最大数量

Known Pitfalls

已知注意事项

ID Formats

ID格式

  • Workspace/Team IDs are large integers
  • Space, folder, and list IDs are integers
  • Task IDs are alphanumeric strings (e.g., "9hz", "abc123")
  • User IDs are integers
  • Comment IDs are integers
  • 工作区/团队ID为大整数
  • 空间、文件夹和列表ID为整数
  • 任务ID为字母数字字符串(例如"9hz"、"abc123")
  • 用户ID为整数
  • 评论ID为整数

Rate Limits

速率限制

  • ClickUp enforces rate limits; bulk task creation can trigger 429 responses
  • Honor
    Retry-After
    header when present
  • Set
    notify_all=false
    for bulk operations to reduce notification load
  • ClickUp设有速率限制;批量创建任务可能会触发429响应
  • 若存在
    Retry-After
    响应头,请遵循该指示进行重试
  • 批量操作时设置
    notify_all=false
    以减少通知负载

Parameter Quirks

参数特殊点

  • team_id
    in the API means Workspace ID, not a user group
  • status
    on tasks is case-sensitive and list-specific
  • Dates are Unix timestamps in milliseconds (multiply seconds by 1000)
  • priority
    is an integer 1-4 (1=Urgent, 4=Low), not a string
  • CLICKUP_CREATE_TASK_COMMENT
    marks
    assignee
    and
    notify_all
    as required
  • To clear a task description, pass a single space
    " "
    to
    CLICKUP_UPDATE_TASK
  • API中的
    team_id
    指工作区ID,而非用户组
  • 任务的
    status
    区分大小写且与列表相关
  • 日期为毫秒级Unix时间戳(需将秒数乘以1000)
  • priority
    为1-4的整数(1=紧急,4=低),而非字符串
  • CLICKUP_CREATE_TASK_COMMENT
    要求
    assignee
    notify_all
    为必填字段
  • 若要清除任务描述,请在
    CLICKUP_UPDATE_TASK
    中传入单个空格
    " "

Hierarchy Rules

层级规则

  • Subtask parent must not itself be a subtask
  • Subtask parent must be in the same list
  • Lists can be folderless (directly in a Space) or inside a Folder
  • Subitem boards are not supported by CLICKUP_CREATE_TASK
  • 子任务的父任务不能是其他子任务
  • 子任务的父任务必须在同一列表中
  • 列表可以是无文件夹的(直接在空间下)或在文件夹内
  • CLICKUP_CREATE_TASK不支持子项看板

Quick Reference

快速参考

TaskTool SlugKey Params
List workspaces
CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
(none)
List spaces
CLICKUP_GET_SPACES
team_id
Get space details
CLICKUP_GET_SPACE
space_id
List folders
CLICKUP_GET_FOLDERS
space_id
Get folder details
CLICKUP_GET_FOLDER
folder_id
Create folder
CLICKUP_CREATE_FOLDER
space_id
,
name
Folderless lists
CLICKUP_GET_FOLDERLESS_LISTS
space_id
Get list details
CLICKUP_GET_LIST
list_id
Create task
CLICKUP_CREATE_TASK
list_id
,
name
,
status
,
assignees
Update task
CLICKUP_UPDATE_TASK
task_id
,
status
,
priority
Get task
CLICKUP_GET_TASK
task_id
,
include_subtasks
List tasks
CLICKUP_GET_TASKS
list_id
,
statuses
,
page
Delete task
CLICKUP_DELETE_TASK
task_id
Add comment
CLICKUP_CREATE_TASK_COMMENT
task_id
,
comment_text
,
assignee
List comments
CLICKUP_GET_TASK_COMMENTS
task_id
,
start
,
start_id
Update comment
CLICKUP_UPDATE_COMMENT
comment_id
,
comment_text
,
resolved
Workspace seats
CLICKUP_GET_WORKSPACE_SEATS
team_id
List user groups
CLICKUP_GET_TEAMS
team_id
Get user details
CLICKUP_GET_USER
team_id
,
user_id
Custom roles
CLICKUP_GET_CUSTOM_ROLES
team_id

Powered by Composio
操作工具标识关键参数
列出工作区
CLICKUP_GET_AUTHORIZED_TEAMS_WORKSPACES
列出空间
CLICKUP_GET_SPACES
team_id
获取空间详情
CLICKUP_GET_SPACE
space_id
列出文件夹
CLICKUP_GET_FOLDERS
space_id
获取文件夹详情
CLICKUP_GET_FOLDER
folder_id
创建文件夹
CLICKUP_CREATE_FOLDER
space_id
,
name
无文件夹列表
CLICKUP_GET_FOLDERLESS_LISTS
space_id
获取列表详情
CLICKUP_GET_LIST
list_id
创建任务
CLICKUP_CREATE_TASK
list_id
,
name
,
status
,
assignees
更新任务
CLICKUP_UPDATE_TASK
task_id
,
status
,
priority
获取任务详情
CLICKUP_GET_TASK
task_id
,
include_subtasks
列出任务
CLICKUP_GET_TASKS
list_id
,
statuses
,
page
删除任务
CLICKUP_DELETE_TASK
task_id
添加评论
CLICKUP_CREATE_TASK_COMMENT
task_id
,
comment_text
,
assignee
列出评论
CLICKUP_GET_TASK_COMMENTS
task_id
,
start
,
start_id
更新评论
CLICKUP_UPDATE_COMMENT
comment_id
,
comment_text
,
resolved
工作区席位
CLICKUP_GET_WORKSPACE_SEATS
team_id
列出用户组
CLICKUP_GET_TEAMS
team_id
获取用户详情
CLICKUP_GET_USER
team_id
,
user_id
自定义角色
CLICKUP_GET_CUSTOM_ROLES
team_id

Composio 提供支持