name: clickup displayName: ClickUp Integration description: Interact with ClickUp API for task management. Use for listing tasks, creating tasks, updating task status, and managing workspaces. Base URL: https://api.clickup.com/api/v2 version: 1.0.0 tags: - productivity - task-management - api
Note: Configure your credentials in TOOLS.md or set environment variables:
- CLICKUP_API_TOKEN - Your ClickUp API token
- CLICKUP_WORKSPACE_ID - Your ClickUp workspace ID
When assigning tasks, use the correct email based on who should do the work:
| Who | Use When | |
|---|---|---|
your-email@example.com |
Human | Tasks for you to do manually |
ai-assistant@example.com |
AI Assistant | Tasks for AI to execute |
| Both emails | Both Human + AI | Collaborative tasks where AI does research/writing, human reviews/decides |
7w4.net小蔥技能站收錄全網優質技能,值得收藏。
GET https://api.clickup.com/api/v2/list/{list_id}/task
Authorization: {your_api_token}
GET https://api.clickup.com/api/v2/team/{workspace_id}/task
Authorization: {your_api_token}
POST https://api.clickup.com/api/v2/list/{list_id}/task
Authorization: {your_api_token}
Content-Type: application/json
{
"name": "Task name",
"description": "Task description",
"status": "active"
}
PUT https://api.clickup.com/api/v2/task/{task_id}
Authorization: {your_api_token}
Content-Type: application/json
{
"status": "done"
}
GET https://api.clickup.com/api/v2/task/{task_id}
Authorization: {your_api_token}
Authorization: {your_api_token}
Content-Type: application/json
Common statuses: active, pending, review, completed, done
This ClickUp skill handles basic task operations well with good documentation and secure credential handling. The scope is limited to core tasks—it doesn't support folders, lists, comments, or time tracking. For simple task management it works adequately, but users needing advanced features will find it lacking.