@taazkareem/clickup-mcp-server 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +279 -238
- package/build/auth/routes.js +1 -1
- package/build/config.js +1 -1
- package/build/index.js +1 -1
- package/build/license.js +1 -1
- package/build/logger.js +1 -1
- package/build/middleware/auth.js +1 -1
- package/build/middleware/security.js +1 -1
- package/build/personas.js +1 -0
- package/build/prompts.js +1 -1
- package/build/server.js +1 -1
- package/build/services/clickup/audit-logs.js +1 -0
- package/build/services/clickup/base.js +1 -1
- package/build/services/clickup/bulk.js +1 -1
- package/build/services/clickup/chat.js +1 -1
- package/build/services/clickup/custom-field.js +1 -1
- package/build/services/clickup/document.js +1 -1
- package/build/services/clickup/errors.js +1 -1
- package/build/services/clickup/folder.js +1 -1
- package/build/services/clickup/goal.js +1 -1
- package/build/services/clickup/guest.js +1 -0
- package/build/services/clickup/index.js +1 -1
- package/build/services/clickup/list.js +1 -1
- package/build/services/clickup/rate-limiter.js +1 -1
- package/build/services/clickup/sprint.js +1 -0
- package/build/services/clickup/tag.js +1 -1
- package/build/services/clickup/task/index.js +1 -1
- package/build/services/clickup/task/task-attachments.js +1 -1
- package/build/services/clickup/task/task-checklists.js +1 -1
- package/build/services/clickup/task/task-comments.js +1 -1
- package/build/services/clickup/task/task-core.js +1 -1
- package/build/services/clickup/task/task-relationships.js +1 -1
- package/build/services/clickup/task/task-search.js +1 -1
- package/build/services/clickup/task/task-service.js +1 -1
- package/build/services/clickup/task/task-tags.js +1 -1
- package/build/services/clickup/task-templates.js +1 -1
- package/build/services/clickup/time.js +1 -1
- package/build/services/clickup/types.js +1 -1
- package/build/services/clickup/user-group.js +1 -0
- package/build/services/clickup/view.js +1 -1
- package/build/services/clickup/webhook.js +1 -0
- package/build/services/clickup/workspace.js +1 -1
- package/build/services/oauth.js +1 -1
- package/build/services/shared.js +1 -1
- package/build/sse_server.js +1 -1
- package/build/tools/attachment.js +1 -0
- package/build/tools/audit-logs.js +1 -0
- package/build/tools/chat/handlers.js +1 -1
- package/build/tools/chat/index.js +1 -1
- package/build/tools/chat/utils.js +1 -1
- package/build/tools/custom-field.js +1 -1
- package/build/tools/documents.js +1 -1
- package/build/tools/feedback.js +1 -1
- package/build/tools/folder.js +1 -1
- package/build/tools/goal.js +1 -1
- package/build/tools/guest.js +1 -0
- package/build/tools/index.js +1 -1
- package/build/tools/list.js +1 -1
- package/build/tools/registry.js +1 -1
- package/build/tools/space.js +1 -1
- package/build/tools/sprint.js +1 -0
- package/build/tools/tag.js +1 -1
- package/build/tools/task/bulk-operations.js +1 -1
- package/build/tools/task/checklists.js +1 -1
- package/build/tools/task/handlers.js +1 -1
- package/build/tools/task/index.js +1 -1
- package/build/tools/task/main.js +1 -1
- package/build/tools/task/markdown-converter.js +1 -1
- package/build/tools/task/params.js +1 -1
- package/build/tools/task/relationships.js +1 -1
- package/build/tools/task/single-operations.js +1 -1
- package/build/tools/task/utilities.js +1 -1
- package/build/tools/task/workspace-operations.js +1 -1
- package/build/tools/task-templates.js +1 -1
- package/build/tools/time_entries.js +1 -0
- package/build/tools/user-group.js +1 -0
- package/build/tools/utils.js +1 -1
- package/build/tools/view.js +1 -1
- package/build/tools/webhook.js +1 -0
- package/build/tools/workspace.js +1 -1
- package/build/transport/mcp-handler.js +1 -1
- package/build/utils/cache.js +1 -1
- package/build/utils/color-processor.js +1 -1
- package/build/utils/concurrency-utils.js +1 -1
- package/build/utils/date-utils.js +1 -1
- package/build/utils/log-sanitizer.js +1 -1
- package/build/utils/member-utils.js +1 -0
- package/build/utils/request-utils.js +1 -1
- package/build/utils/resolver-utils.js +1 -1
- package/build/utils/sponsor-service.js +1 -1
- package/build/utils/token-utils.js +1 -1
- package/package.json +1 -1
- package/build/tools/member.js +0 -1
- package/build/tools/task/attachments.js +0 -1
- package/build/tools/task/time-tracking.js +0 -1
package/README.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">ClickUp MCP Server — Premium</h1>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://raw.githubusercontent.com/taazkareem/clickup-mcp-server/main/assets/images/clickup_mcp_neon_logo_blue.jpg" alt="ClickUp MCP Server Premium Logo" width="100%">
|
|
5
|
+
</p>
|
|
4
6
|
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
</div>
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://www.npmjs.com/package/@taazkareem/clickup-mcp-server"><img src="https://img.shields.io/npm/v/@taazkareem/clickup-mcp-server.svg" alt="npm version"></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/@taazkareem/clickup-mcp-server"><img src="https://img.shields.io/npm/dm/@taazkareem/clickup-mcp-server.svg" alt="npm downloads"></a>
|
|
10
|
+
<img src="https://img.shields.io/badge/License-Proprietary-red.svg" alt="License">
|
|
11
|
+
<img src="https://img.shields.io/badge/Ranked_Top_3_on_Google-🔥-orange.svg" alt="Top 3 on Google">
|
|
12
|
+
<img src="https://img.shields.io/badge/Trending-MCP_Server-blueviolet.svg" alt="Trending MCP Server">
|
|
13
|
+
<a href="https://github.com/TaazKareem/clickup-mcp-server/graphs/commit-activity"><img src="https://img.shields.io/badge/Maintained%3F-yes-blue.svg" alt="Maintained"></a>
|
|
14
|
+
</p>
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
18
18
|
**Properly Connect ClickUp to AI Agents and Agentic Workflows**
|
|
19
19
|
|
|
20
|
-
*A high-performance Model Context Protocol (MCP) server for managing tasks, checklists, comments, tags, spaces, lists, folders, files, docs, chat, and time using natural language.*
|
|
20
|
+
*A high-performance Model Context Protocol (MCP) server for managing tasks, checklists, sprints, comments, tags, spaces, lists, folders, files, docs, chat, and time using natural language.*
|
|
21
21
|
|
|
22
22
|
**⭐️ Proven Performance:** 460+ Stars (from previous public repo) & thousands of weekly NPM downloads.
|
|
23
23
|
The industry-standard ClickUp integration for AI.
|
|
@@ -28,7 +28,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
28
28
|
|
|
29
29
|
| Links | Quick Start & Installation |
|
|
30
30
|
| :--- | :--- |
|
|
31
|
-
| • [Features](#features)<br>• [Premium Access](#premium-access)<br>• [Available Tools](#available-tools)<br>• [Adv. Config](#advanced-configuration)<br>• [FAQ](#faq)<br>• [Disclaimer](#disclaimer) | <table border="0" style="border: none; border-collapse: collapse; width: 575px;"> <tr style="border: none;"> <td width="140" style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/
|
|
31
|
+
| • [Features](#features)<br>• [Premium Access](#premium-access)<br>• [Available Tools](#available-tools)<br>• [Adv. Config](#advanced-configuration)<br>• [FAQ](#faq)<br>• [Disclaimer](#disclaimer) | <table border="0" style="border: none; border-collapse: collapse; width: 575px;"> <tr style="border: none;"> <td width="140" style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/openclaw-logo.svg" height="16" style="vertical-align: middle;"> OpenClaw](#openclaw-setup)</td> <td width="155" style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/cursor-white.svg" height="16" style="vertical-align: middle;"> Cursor](#cursor-setup)</td> <td width="140" style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/visual-studio-code.svg" height="16" style="vertical-align: middle;"> VS Code](#vscode-setup)</td> <td width="140" style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="https://avatars.githubusercontent.com/u/211522643?s=200&v=4" height="16" style="vertical-align: middle; border-radius: 4px;"> Roo Code](#roocode-setup)</td> </tr> <tr style="border: none;"> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/claude.svg" height="16" style="vertical-align: middle;"> Claude](#claude-desktop-setup)</td> <td st yle="border: none; vertical-align: middle; white-space: nowrap;">[<img src="https://cdn.simpleicons.org/anthropic/D97757" height="16" style="vertical-align: middle;"> Claude Code](#claude-code-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="https://cdn.simpleicons.org/n8n/FF6D5A" height="16" style="vertical-align: middle;"> n8n](#n8n-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="https://cdn.simpleicons.org/googlegemini/8E75C2" height="16" style="vertical-align: middle;"> Gemini CLI](#gemini-setup)</td> </tr> <tr style="border: none;"> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/antigravity.svg" height="16" style="vertical-align: middle;"> Antigravity](#antigravity-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/openai-icon.svg" height="16" style="vertical-align: middle;"> Codex](#codex-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/openai-icon.svg" height="16" style="vertical-align: middle;"> ChatGPT](#chatgpt-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/augment-code.svg" height="16" style="vertical-align: middle;"> Augment](#augment-setup)</td> </tr> <tr style="border: none;"> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/augment-code.svg" height="16" style="vertical-align: middle;"> Auggie](#auggierun-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[<img src="./assets/logos/windsurf-white.svg" height="16" style="vertical-align: middle;"> Windsurf](#windsurf-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[Other](#other-setup)</td> <td style="border: none; vertical-align: middle; white-space: nowrap;">[➕ Add Agent](mailto:info@taazkareem.com?subject=Redirect%20URI%20Whitelist%20Request)</td> </tr> </table> |
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
@@ -38,7 +38,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
38
38
|
<tr style="border: none;">
|
|
39
39
|
<td width="50%" style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
40
40
|
<strong>🔐 Hybrid Authentication</strong><br>
|
|
41
|
-
MCP spec
|
|
41
|
+
MCP spec-compliant OAuth 2.1 with advanced security hardening and session-isolated caching for fast, secure multi-tenant operation. Backwards compatible with API Key/Team ID.
|
|
42
42
|
</td>
|
|
43
43
|
<td width="50%" style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
44
44
|
<strong>🔍 Intelligent Search & Resolution</strong><br>
|
|
@@ -48,31 +48,41 @@ The industry-standard ClickUp integration for AI.
|
|
|
48
48
|
<tr style="border: none;">
|
|
49
49
|
<td style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
50
50
|
<strong>📝 Task Management</strong><br>
|
|
51
|
-
|
|
51
|
+
Full CRUD, move, duplicate, link, and set dependencies between tasks. Supports bulk operations, nested subtasks, checklists, sprints (active detection), natural language dates, custom task IDs, custom task types, custom fields, task templates, and file attachments (upload via URL, local path, or base64).
|
|
52
52
|
</td>
|
|
53
53
|
<td style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
54
54
|
<strong>⏱️ Time Tracking</strong><br>
|
|
55
|
-
Start/stop timers, log manual entries, and filter time entries across the entire workspace using natural language dates or date ranges.
|
|
55
|
+
Start/stop timers, log manual entries, edit existing entries, retrieve timer history, manage time entry tags, and filter time entries across the entire workspace using natural language dates or date ranges.
|
|
56
56
|
</td>
|
|
57
57
|
</tr>
|
|
58
58
|
<tr style="border: none;">
|
|
59
59
|
<td style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
60
60
|
<strong>📄 Document Management</strong><br>
|
|
61
|
-
Create, read, and append to ClickUp Docs with full markdown text.
|
|
61
|
+
Create, read, and append to ClickUp Docs with full markdown text. Manage pages within documents for structured, long-form content (consolidated action-based tool).
|
|
62
|
+
</td>
|
|
63
|
+
<td style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
64
|
+
<strong>💬 Comments & Chat</strong><br>
|
|
65
|
+
Post, edit, resolve, and reply to comments on tasks, lists, and views. Create and manage chat channels (including DMs), send messages with threaded replies, reactions, and follower management. Both support rich text, subtypes, and @mentions.
|
|
66
|
+
</td>
|
|
67
|
+
</tr>
|
|
68
|
+
<tr style="border: none;">
|
|
69
|
+
<td style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
70
|
+
<strong>🎯 Goals & Key Results</strong><br>
|
|
71
|
+
Create and manage Goals with full lifecycle support—create, update, delete, and archive. Define and track nested Key Results to measure OKR progress across the workspace.
|
|
62
72
|
</td>
|
|
63
73
|
<td style="vertical-align: top; border: none; padding-bottom: 20px;">
|
|
64
|
-
<strong
|
|
65
|
-
|
|
74
|
+
<strong>📋 Views</strong><br>
|
|
75
|
+
Create, list, update, and delete views at any level of the workspace hierarchy—space, folder, or list. Fetch tasks scoped to a specific view for focused filtering.
|
|
66
76
|
</td>
|
|
67
77
|
</tr>
|
|
68
78
|
<tr style="border: none;">
|
|
69
79
|
<td style="vertical-align: top; border: none;">
|
|
70
|
-
<strong
|
|
71
|
-
|
|
80
|
+
<strong>🗂️ Task Templates</strong><br>
|
|
81
|
+
Browse available task templates and instantly create tasks from them. Streamlines repeatable workflows without manual setup each time.
|
|
72
82
|
</td>
|
|
73
83
|
<td style="vertical-align: top; border: none;">
|
|
74
|
-
<strong
|
|
75
|
-
|
|
84
|
+
<strong>🌳 Workspace Control</strong><br>
|
|
85
|
+
Full CRUD for spaces, folders, lists, webhooks, and tags across the entire workspace hierarchy. Manage access control (ACL) permissions at any level. Switch workspaces mid-conversation without reconfiguration.
|
|
76
86
|
</td>
|
|
77
87
|
</tr>
|
|
78
88
|
</table>
|
|
@@ -81,19 +91,34 @@ The industry-standard ClickUp integration for AI.
|
|
|
81
91
|
|
|
82
92
|
## <a name="premium-access"></a>💎 Premium Access
|
|
83
93
|
|
|
84
|
-
|
|
94
|
+
<div align="center">
|
|
95
|
+
|
|
96
|
+
<h3>Unlock 145 Enterprise-Grade Custom Tools</h3>
|
|
97
|
+
|
|
98
|
+
This project transitioned from open-source to a paid model for sustainable full-time development and priority support.
|
|
99
|
+
A license grants full, unrestricted access to all features across your agents⎯no limits.
|
|
85
100
|
|
|
86
|
-
|
|
101
|
+
<br>
|
|
102
|
+
|
|
103
|
+
| [**Monthly ($9/mo)**](https://buy.polar.sh/polar_cl_3xQojQLgzQXKCLzsxc49YfL6z8hzSBBqh9ivy1qZdwW?utm_source=github&utm_medium=readme) | [**Annual ($59/yr)**](https://buy.polar.sh/polar_cl_3a8a3055T4CHIoVlSQPsNshOJLUwsM8AHAiIR3y9wTZ?utm_source=github&utm_medium=readme) | [**Lifetime ($89 w/ code)**](https://buy.polar.sh/polar_cl_4ha3uVyJTu4iPZJS1QbBYNTI1MKTvaXXCkZTb45vPPF?utm_source=github&utm_medium=readme) |
|
|
87
104
|
| :--- | :--- | :--- |
|
|
88
|
-
| • Pay-as-you-go flexibility<br>• 3 device activations<br>• Cancel anytime | •
|
|
105
|
+
| • Pay-as-you-go flexibility<br>• 3 device activations<br>• Cancel anytime | • **Save 45%** ($4.92/mo)<br>• 3 device activations<br>• Priority support all year | • **Best Value** — One payment<br>• 3 device activations<br>• **25% OFF** code: `MAR25` |
|
|
106
|
+
<br>
|
|
107
|
+
|
|
108
|
+
<p align="center">
|
|
109
|
+
<img src="./assets/images/line.svg" width="150" alt="" style="vertical-align: middle;"> <a href="https://buy.polar.sh/polar_cl_tZ2q8jRvtaaduurOkQKKJmRgdD43ZiB5K0GZn0aQcur?utm_source=github&utm_medium=readme"><img src="https://img.shields.io/badge/PURCHASE%20LICENSE-0069ff?style=for-the-badge&logo=polar&logoColor=white" alt="Purchase License" style="vertical-align: middle;"></a> <img src="./assets/images/line.svg" width="150" alt="" style="vertical-align: middle;">
|
|
110
|
+
</p>
|
|
111
|
+
|
|
112
|
+
<br>
|
|
89
113
|
|
|
90
|
-
**⚡️ Instant Delivery
|
|
114
|
+
**⚡️ Instant Key Delivery (Polar.sh)** • **Setup takes less than 2 mins**
|
|
115
|
+
|
|
116
|
+
</div>
|
|
91
117
|
|
|
92
|
-
[](https://buy.polar.sh/polar_cl_tZ2q8jRvtaaduurOkQKKJmRgdD43ZiB5K0GZn0aQcur?utm_source=github&utm_medium=readme)
|
|
93
118
|
|
|
94
119
|
---
|
|
95
120
|
|
|
96
|
-
## 🚀 Quick Start
|
|
121
|
+
## 🚀 Quick Start
|
|
97
122
|
|
|
98
123
|
### 1. Prerequisites
|
|
99
124
|
* **License Key:** See above
|
|
@@ -106,53 +131,68 @@ The industry-standard ClickUp integration for AI.
|
|
|
106
131
|
- Look at the URL: `https://app.clickup.com/1234567/v/li/987654321`.
|
|
107
132
|
- The first number (`1234567`) directly after `clickup.com/` is your **Team ID** (Workspace ID).
|
|
108
133
|
|
|
109
|
-
### 2. Choose your
|
|
134
|
+
### 2. Choose your MCP Host & Transport
|
|
110
135
|
|
|
111
|
-
<a name="
|
|
112
|
-
<details
|
|
113
|
-
<summary> <img src="./assets/logos/
|
|
114
|
-
|
|
115
|
-
**Configuration Path:** `<project-root>/.cursor/mcp.json`
|
|
136
|
+
<a name="openclaw-setup"></a>
|
|
137
|
+
<details>
|
|
138
|
+
<summary> <img src="./assets/logos/openclaw-logo.svg" height="22" align="center"> <strong>OpenClaw (via mcporter) </strong> <sub> FEATURED</sub></summary>
|
|
116
139
|
|
|
117
|
-
**
|
|
140
|
+
**1. Enable** mcporter in `~/.openclaw/openclaw.json`:
|
|
118
141
|
```json
|
|
119
|
-
{
|
|
120
|
-
"mcpServers": {
|
|
121
|
-
"ClickUp": {
|
|
122
|
-
"url": "https://clickup-mcp.taazkareem.com/mcp",
|
|
123
|
-
"headers": {
|
|
124
|
-
"X-License-Key": "your-license-key"
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
142
|
+
{"skills": {"allowBundled": ["mcporter"]}}
|
|
129
143
|
```
|
|
130
144
|
|
|
131
|
-
**
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
145
|
+
**2. Configure & Auth**
|
|
146
|
+
Connect the server and authorize via browser (tokens are cached):
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
# Add ClickUp as a remote server
|
|
150
|
+
mcporter config add ClickUp https://clickup-mcp.taazkareem.com/mcp --auth oauth --header "X-License-Key=your-license-key"
|
|
151
|
+
|
|
152
|
+
# Authenticate session
|
|
153
|
+
mcporter auth ClickUp
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
**3. Optional: Multiple Personas**
|
|
157
|
+
The most robust and flexible way to manage personas is to define multiple named servers in your **agent-specific** `mcporter.json` configuration. This isolates credentials and policies per-agent.
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
# Define an Auditor persona (Read-only) in your workspace config
|
|
161
|
+
mcporter --config <agent-workspace>/config/mcporter.json config add ClickUp-Auditor https://clickup-mcp.taazkareem.com/mcp \
|
|
162
|
+
--header "X-Persona=auditor" \
|
|
163
|
+
--header "X-License-Key=your-license-key" \
|
|
164
|
+
--header "X-ClickUp-Key=api-key" \
|
|
165
|
+
--header "X-ClickUp-Team-Id=your-team-id"
|
|
166
|
+
|
|
167
|
+
# Define a Task Worker persona (Daily CRUD)
|
|
168
|
+
mcporter --config <agent-workspace>/config/mcporter.json config add ClickUp-Worker https://clickup-mcp.taazkareem.com/mcp \
|
|
169
|
+
--header "X-Persona=task_worker" \
|
|
170
|
+
--header "X-License-Key=your-license-key" \
|
|
171
|
+
--header "X-ClickUp-Key=api-key-2" \
|
|
172
|
+
--header "X-ClickUp-Team-Id=your-team-id"
|
|
173
|
+
|
|
174
|
+
# Now the OpenClaw sub-agent can see the optimized schema and call its focused tools like:
|
|
175
|
+
mcporter list ClickUp-Auditor --schema
|
|
176
|
+
mcporter call ClickUp-Auditor.get_workspace
|
|
177
|
+
|
|
178
|
+
mcporter list ClickUp-Worker --schema
|
|
179
|
+
mcporter call ClickUp-Worker.create_task listId="123456789" name="New Task"
|
|
146
180
|
```
|
|
181
|
+
|
|
182
|
+
>
|
|
183
|
+
> **Isolation**: You can add X-Enabled-Tools or X-Disabled-Tools to mix and match tools and personas, or perhaps enable just a single tool. You can assign different ClickUp API Keys, Team IDs, or even different License Keys to each persona. Since the agent only reads the tool definitions and not the sensitive headers directly, this is the most secure way to handle multi-agent ClickUp configurations.
|
|
184
|
+
|
|
185
|
+
To see all available personas and what they do, see the [Advanced Configuration](#advanced-configuration) section below.
|
|
186
|
+
|
|
147
187
|
</details>
|
|
148
188
|
|
|
149
|
-
<a name="
|
|
189
|
+
<a name="cursor-setup"></a>
|
|
150
190
|
<details>
|
|
151
|
-
<summary> <img src="./assets/logos/
|
|
191
|
+
<summary> <img src="./assets/logos/cursor-white.svg" height="22" align="center"> <strong>Cursor</strong></summary>
|
|
152
192
|
|
|
153
|
-
**Configuration Path:** `<project-root>/.
|
|
193
|
+
**Configuration Path:** `<project-root>/.cursor/mcp.json`
|
|
154
194
|
|
|
155
|
-
**Option A:
|
|
195
|
+
**Option A: Remote / Streamable HTTP (Easiest)**
|
|
156
196
|
```json
|
|
157
197
|
{
|
|
158
198
|
"mcpServers": {
|
|
@@ -166,7 +206,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
166
206
|
}
|
|
167
207
|
```
|
|
168
208
|
|
|
169
|
-
**Option B: Local
|
|
209
|
+
**Option B: Local / STDIO**
|
|
170
210
|
```json
|
|
171
211
|
{
|
|
172
212
|
"mcpServers": {
|
|
@@ -192,7 +232,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
192
232
|
- **Global:** `~/Library/Application Support/Code/User/mcp.json`
|
|
193
233
|
- **Local:** `<project-root>/.vscode/mcp.json`
|
|
194
234
|
|
|
195
|
-
**Option A:
|
|
235
|
+
**Option A: Remote / Streamable HTTP (Easiest)**
|
|
196
236
|
```json
|
|
197
237
|
{
|
|
198
238
|
"mcpServers": {
|
|
@@ -206,7 +246,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
206
246
|
}
|
|
207
247
|
```
|
|
208
248
|
|
|
209
|
-
**Option B: Local
|
|
249
|
+
**Option B: Local / STDIO**
|
|
210
250
|
```json
|
|
211
251
|
{
|
|
212
252
|
"mcpServers": {
|
|
@@ -230,7 +270,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
230
270
|
|
|
231
271
|
**Configuration Path:** `<project-root>/.roo/mcp.json`
|
|
232
272
|
|
|
233
|
-
**Option A:
|
|
273
|
+
**Option A: Remote / Streamable HTTP (Easiest)**
|
|
234
274
|
```json
|
|
235
275
|
{
|
|
236
276
|
"mcpServers": {
|
|
@@ -244,7 +284,7 @@ The industry-standard ClickUp integration for AI.
|
|
|
244
284
|
}
|
|
245
285
|
```
|
|
246
286
|
|
|
247
|
-
**Option B: Local
|
|
287
|
+
**Option B: Local / STDIO**
|
|
248
288
|
```json
|
|
249
289
|
{
|
|
250
290
|
"mcpServers": {
|
|
@@ -300,9 +340,9 @@ claude mcp add --transport http ClickUp https://clickup-mcp.taazkareem.com/mcp \
|
|
|
300
340
|
<details>
|
|
301
341
|
<summary> <img src="https://cdn.simpleicons.org/n8n/FF6D5A" height="22" align="center"> <strong>n8n</strong></summary>
|
|
302
342
|
|
|
303
|
-
**Option A:
|
|
343
|
+
**Option A: Remote / Streamable HTTP (Recommended)**
|
|
304
344
|
1. In n8n, add an **"MCP Client"** node.
|
|
305
|
-
2. Set Connection Type to `HTTP
|
|
345
|
+
2. Set Connection Type to `Streamable HTTP`.
|
|
306
346
|
3. Auth Type: `Multiple Headers Auth`.
|
|
307
347
|
4. Header: `X-License-Key` Value: `your-license-key`
|
|
308
348
|
5. URL: `https://clickup-mcp.taazkareem.com/mcp`
|
|
@@ -359,14 +399,14 @@ Codex clients (CLI, Desktop App, and VS Code extension) share a single source of
|
|
|
359
399
|
- **Global:** `~/.codex/config.toml`
|
|
360
400
|
- **Local:** `<project-root>/.codex/config.toml`
|
|
361
401
|
|
|
362
|
-
**Option A:
|
|
402
|
+
**Option A: Remote / Streamable HTTP (Easiest)**
|
|
363
403
|
```toml
|
|
364
404
|
[mcp_servers.ClickUp]
|
|
365
405
|
url = "https://clickup-mcp.taazkareem.com/mcp"
|
|
366
406
|
http_headers = { "X-License-Key" = "your-license-key" }
|
|
367
407
|
```
|
|
368
408
|
|
|
369
|
-
**Option B: Local
|
|
409
|
+
**Option B: Local / STDIO**
|
|
370
410
|
```toml
|
|
371
411
|
[mcp_servers.ClickUp]
|
|
372
412
|
command = "npx"
|
|
@@ -431,48 +471,42 @@ auggie mcp add ClickUp --url https://clickup-mcp.taazkareem.com/mcp \
|
|
|
431
471
|
```
|
|
432
472
|
</details>
|
|
433
473
|
|
|
434
|
-
<a name="
|
|
474
|
+
<a name="windsurf-setup"></a>
|
|
435
475
|
<details>
|
|
436
|
-
<summary> <img src="./assets/logos/
|
|
476
|
+
<summary> <img src="./assets/logos/windsurf-white.svg" height="22" align="center"> <strong>Windsurf</strong></summary>
|
|
437
477
|
|
|
438
|
-
**
|
|
439
|
-
```json
|
|
440
|
-
{"skills": {"allowBundled": ["mcporter"]}}
|
|
441
|
-
```
|
|
442
|
-
|
|
443
|
-
**2. Configure**
|
|
444
|
-
|
|
445
|
-
The fastest way to configure the server is using the `mcporter` CLI. Run one of the following commands in your terminal:
|
|
446
|
-
|
|
447
|
-
**Option A: Local (Recommended)**
|
|
448
|
-
*Saves to `<project-root>/config/mcporter.json`*
|
|
449
|
-
```bash
|
|
450
|
-
mcporter config add ClickUp https://clickup-mcp.taazkareem.com/mcp \
|
|
451
|
-
--auth oauth \
|
|
452
|
-
--header "X-License-Key=your-license-key"
|
|
453
|
-
```
|
|
454
|
-
|
|
455
|
-
**Option B: Global**
|
|
456
|
-
*Saves to `~/.mcporter/mcporter.json`*
|
|
457
|
-
```bash
|
|
458
|
-
mcporter config add ClickUp https://clickup-mcp.taazkareem.com/mcp \
|
|
459
|
-
--scope home \
|
|
460
|
-
--auth oauth \
|
|
461
|
-
--header "X-License-Key=your-license-key"
|
|
462
|
-
```
|
|
478
|
+
**Configuration Path:** `<project-root>/.codeium/windsurf/mcp_config.json`
|
|
463
479
|
|
|
464
|
-
**
|
|
465
|
-
```
|
|
466
|
-
|
|
480
|
+
**Option A: Remote / Streamable HTTP (Easiest)**
|
|
481
|
+
```json
|
|
482
|
+
{
|
|
483
|
+
"mcpServers": {
|
|
484
|
+
"ClickUp": {
|
|
485
|
+
"url": "https://clickup-mcp.taazkareem.com/mcp",
|
|
486
|
+
"headers": {
|
|
487
|
+
"X-License-Key": "your-license-key"
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
}
|
|
467
492
|
```
|
|
468
493
|
|
|
469
|
-
**
|
|
470
|
-
```
|
|
471
|
-
|
|
494
|
+
**Option B: Local / STDIO**
|
|
495
|
+
```json
|
|
496
|
+
{
|
|
497
|
+
"mcpServers": {
|
|
498
|
+
"ClickUp": {
|
|
499
|
+
"command": "npx",
|
|
500
|
+
"args": ["-y", "@taazkareem/clickup-mcp-server@latest"],
|
|
501
|
+
"env": {
|
|
502
|
+
"CLICKUP_API_KEY": "your-api-key",
|
|
503
|
+
"CLICKUP_TEAM_ID": "your-team-id",
|
|
504
|
+
"CLICKUP_MCP_LICENSE_KEY": "your-license-key"
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
472
509
|
```
|
|
473
|
-
|
|
474
|
-
> **Tip:** Since mcporter is a one-shot CLI client, if using multiple workspaces, always pass `team_id` to target the correct workspace.
|
|
475
|
-
|
|
476
510
|
</details>
|
|
477
511
|
|
|
478
512
|
<a name="other-setup"></a>
|
|
@@ -517,13 +551,12 @@ Restart your MCP Host (e.g., Cursor IDE). The server will validate your License
|
|
|
517
551
|
## <a name="available-tools"></a>🛠️ Available Tools
|
|
518
552
|
|
|
519
553
|
<details>
|
|
520
|
-
<summary><strong>👇 Click to view all
|
|
554
|
+
<summary><strong>👇 Click to view all 145 available tools</strong></summary>
|
|
521
555
|
|
|
522
556
|
| Category | Tool | Description |
|
|
523
557
|
| :--- | :--- | :--- |
|
|
524
|
-
| **Workspace** | `
|
|
525
|
-
| | `
|
|
526
|
-
| | `find_member_by_name` | Find member by name or email |
|
|
558
|
+
| **Workspace** | `get_workspace` | Get workspace structure and metadata (hierarchy, members, plan, seats, shared items, custom task types) |
|
|
559
|
+
| | `get_audit_logs` | Retrieve workspace audit logs (Enterprise only) |
|
|
527
560
|
| **Tasks** | `create_task` | Create a task |
|
|
528
561
|
| | `get_task` | Get single task details |
|
|
529
562
|
| | `update_task` | Modify task properties |
|
|
@@ -537,54 +570,133 @@ Restart your MCP Host (e.g., Cursor IDE). The server will validate your License
|
|
|
537
570
|
| | `move_bulk_tasks` | Move multiple tasks |
|
|
538
571
|
| | `delete_bulk_tasks` | Delete multiple tasks |
|
|
539
572
|
| | `get_workspace_tasks` | Search tasks with Deep Search filtering |
|
|
540
|
-
| | `
|
|
541
|
-
| | `
|
|
542
|
-
| | `
|
|
573
|
+
| | `get_comments` | Get comments on a task, list, or view |
|
|
574
|
+
| | `create_comment` | Create a comment on a task, list, or view |
|
|
575
|
+
| | `update_comment` | Edit or resolve a comment |
|
|
576
|
+
| | `delete_comment` | Delete a comment |
|
|
577
|
+
| | `get_comment_replies` | Get threaded replies for a comment |
|
|
578
|
+
| | `create_comment_reply` | Reply to a comment in a thread |
|
|
579
|
+
| | `add_comment_reaction` | Add an emoji reaction to a comment |
|
|
580
|
+
| | `remove_comment_reaction` | Remove an emoji reaction from a comment |
|
|
581
|
+
| | `get_comment_subtypes` | Get post subtype IDs for the workspace |
|
|
543
582
|
| | `add_task_link` | Link two tasks together |
|
|
544
|
-
| | `get_task_links` | Get task
|
|
545
|
-
| | `delete_task_link` | Remove task
|
|
583
|
+
| | `get_task_links` | Get task links |
|
|
584
|
+
| | `delete_task_link` | Remove a task link |
|
|
585
|
+
| | `add_task_dependency` | Set a blocking dependency between tasks |
|
|
586
|
+
| | `delete_task_dependency` | Remove a blocking dependency between tasks |
|
|
587
|
+
| **Attachments** | `list_attachments` | List attachments for a task or file custom field (v3) |
|
|
588
|
+
| | `get_attachment` | Get a specific attachment by ID or name (v3) |
|
|
589
|
+
| | `upload_attachment` | Upload a file to a task or file custom field (v3) |
|
|
546
590
|
| **Checklists** | `create_checklist` | Add a checklist to a task |
|
|
547
591
|
| | `edit_checklist` | Rename or reorder a checklist |
|
|
548
592
|
| | `delete_checklist` | Delete a checklist and all its items |
|
|
549
593
|
| | `create_checklist_item` | Add an item to a checklist |
|
|
550
|
-
| | `edit_checklist_item` | Update item (
|
|
594
|
+
| | `edit_checklist_item` | Update a checklist item (name, resolved, assignee, nesting) |
|
|
551
595
|
| | `delete_checklist_item` | Remove an item from a checklist |
|
|
552
|
-
| **
|
|
553
|
-
| | `
|
|
596
|
+
| **Sprints** | `get_active_sprint` | Auto-detect the currently active sprint; returns tasks if exactly one found |
|
|
597
|
+
| | `list_sprints` | List all sprints in a folder |
|
|
598
|
+
| | `get_sprint_tasks` | Get tasks for a specific sprint list |
|
|
599
|
+
| **Lists** | `list_lists` | Get all folderless lists in a space |
|
|
554
600
|
| | `get_list` | Get list details |
|
|
601
|
+
| | `create_list` | Create a list in a space or folder |
|
|
555
602
|
| | `update_list` | Update list properties |
|
|
556
|
-
| | `move_list` | Move list to new Space/Folder |
|
|
557
603
|
| | `delete_list` | Delete a list |
|
|
558
|
-
|
|
|
559
|
-
|
|
|
560
|
-
| **
|
|
561
|
-
|
|
|
562
|
-
|
|
|
563
|
-
| | `
|
|
604
|
+
| | `move_list` | Move a list to a different space or folder (high-integrity) |
|
|
605
|
+
| | `set_list_permissions` | Update list privacy and sharing (ACLs) |
|
|
606
|
+
| **Custom Fields** | `list_custom_fields` | List field definitions for a list, folder, or space |
|
|
607
|
+
| | `create_custom_field` | Add a new field definition to a list |
|
|
608
|
+
| | `set_custom_field_value` | Set a field value on a task |
|
|
609
|
+
| | `remove_custom_field_value` | Clear a field value from a task |
|
|
610
|
+
| **Spaces** | `list_spaces` | List all spaces in the workspace |
|
|
611
|
+
| | `get_space` | Get space details |
|
|
612
|
+
| | `create_space` | Create a new space |
|
|
613
|
+
| | `update_space` | Update space properties |
|
|
614
|
+
| | `delete_space` | Delete a space |
|
|
615
|
+
| | `set_space_permissions` | Update space privacy and sharing (ACLs) |
|
|
616
|
+
| **Goals** | `list_goals` | List all goals in the workspace |
|
|
617
|
+
| | `get_goal` | Get a goal with its key results |
|
|
618
|
+
| | `create_goal` | Create a new goal |
|
|
619
|
+
| | `update_goal` | Update a goal's properties |
|
|
620
|
+
| | `delete_goal` | Delete a goal |
|
|
621
|
+
| | `create_key_result` | Add a key result to a goal |
|
|
622
|
+
| | `update_key_result` | Update a key result |
|
|
623
|
+
| | `delete_key_result` | Delete a key result |
|
|
624
|
+
| **Views** | `list_views` | List views for a space, folder, list, or workspace |
|
|
625
|
+
| | `get_view` | Get a single view |
|
|
626
|
+
| | `create_view` | Create a new view |
|
|
627
|
+
| | `update_view` | Update a view |
|
|
628
|
+
| | `delete_view` | Delete a view |
|
|
629
|
+
| | `get_view_tasks` | Get tasks in a view |
|
|
630
|
+
| **Folders** | `get_folder` | Get folder details |
|
|
631
|
+
| | `create_folder` | Create a folder in a space |
|
|
564
632
|
| | `update_folder` | Update folder properties |
|
|
565
|
-
| | `move_folder` | Move folder to new Space |
|
|
566
633
|
| | `delete_folder` | Delete a folder |
|
|
567
|
-
|
|
|
634
|
+
| | `move_folder` | Move a folder to a different space (high-integrity) |
|
|
635
|
+
| | `set_folder_permissions` | Update folder privacy and sharing (ACLs) |
|
|
636
|
+
| **Tags** | `list_space_tags` | List all tags in a space |
|
|
637
|
+
| | `create_space_tag` | Create a new space tag |
|
|
638
|
+
| | `update_space_tag` | Update a space tag's name or colors |
|
|
639
|
+
| | `delete_space_tag` | Delete a tag from a space |
|
|
568
640
|
| | `add_tag_to_task` | Add tag to task |
|
|
569
641
|
| | `remove_tag_from_task` | Remove tag from task |
|
|
570
|
-
| **Time Tracking** | `
|
|
571
|
-
| | `
|
|
572
|
-
| | `
|
|
573
|
-
| | `
|
|
574
|
-
| | `add_time_entry` |
|
|
575
|
-
| | `
|
|
576
|
-
| | `
|
|
577
|
-
|
|
|
578
|
-
| | `
|
|
579
|
-
| | `
|
|
580
|
-
| | `
|
|
581
|
-
| | `
|
|
582
|
-
| | `
|
|
583
|
-
| | `
|
|
584
|
-
|
|
|
585
|
-
| | `
|
|
642
|
+
| **Time Tracking** | `get_time_entries` | Fetch historical time entries |
|
|
643
|
+
| | `get_current_time_entry` | Get currently running timer |
|
|
644
|
+
| | `start_time_entry` | Start tracking time for a task |
|
|
645
|
+
| | `stop_time_entry` | Stop the active timer |
|
|
646
|
+
| | `add_time_entry` | Manually log a time entry |
|
|
647
|
+
| | `update_time_entry` | Modify an existing time entry |
|
|
648
|
+
| | `delete_time_entry` | Delete a time entry |
|
|
649
|
+
| | `get_time_entry_tags` | Fetch all workspace time entry tags |
|
|
650
|
+
| | `add_time_entry_tags` | Add a tag to a time entry |
|
|
651
|
+
| | `update_time_entry_tags` | Rename a workspace time entry tag globally |
|
|
652
|
+
| | `delete_time_entry_tags` | Remove a tag from a time entry |
|
|
653
|
+
| | `get_time_entry_history` | View edit history of a time entry |
|
|
654
|
+
| | `get_time_in_status` | Get time-in-status for multiple tasks |
|
|
655
|
+
| **Docs** | `list_documents` | List documents in a workspace or container |
|
|
656
|
+
| | `get_document` | Get document metadata |
|
|
657
|
+
| | `create_document` | Create a new standalone document |
|
|
658
|
+
| | `list_document_pages` | List all pages in a document |
|
|
659
|
+
| | `get_document_page` | Get content for a single page |
|
|
660
|
+
| | `get_document_pages` | Get content for multiple pages in one call |
|
|
661
|
+
| | `create_document_page` | Add a new page to a document |
|
|
662
|
+
| | `update_document_page` | Modify an existing page (replace/append/prepend) |
|
|
663
|
+
| **Chat** | `list_chat_channels` | List all channels in the workspace |
|
|
664
|
+
| | `get_chat_channel` | Get a single channel |
|
|
665
|
+
| | `create_chat_channel` | Create a new channel |
|
|
666
|
+
| | `update_chat_channel` | Update a channel |
|
|
667
|
+
| | `delete_chat_channel` | Delete a channel |
|
|
668
|
+
| | `get_chat_channel_members` | Get members of a channel |
|
|
669
|
+
| | `get_chat_channel_followers` | Get followers of a channel |
|
|
670
|
+
| | `create_chat_dm` | Create a direct message channel |
|
|
671
|
+
| | `get_chat_messages` | Get messages from a channel |
|
|
586
672
|
| | `create_chat_message` | Send a message to a channel |
|
|
587
|
-
| | `
|
|
673
|
+
| | `update_chat_message` | Edit a message |
|
|
674
|
+
| | `delete_chat_message` | Delete a message |
|
|
675
|
+
| | `get_chat_message_replies` | Get threaded replies to a message |
|
|
676
|
+
| | `create_chat_message_reply` | Reply to a message in a thread |
|
|
677
|
+
| | `add_chat_reaction` | Add an emoji reaction to a message |
|
|
678
|
+
| | `remove_chat_reaction` | Remove an emoji reaction |
|
|
679
|
+
| | `get_chat_reactions` | Get all reactions on a message |
|
|
680
|
+
| | `get_chat_tagged_users` | Get users tagged in a message |
|
|
681
|
+
| | `get_chat_message_subtypes` | Get post subtype IDs for the workspace |
|
|
682
|
+
| **Webhooks** | `list_webhooks` | List all webhooks in the workspace |
|
|
683
|
+
| | `create_webhook` | Create a new webhook |
|
|
684
|
+
| | `update_webhook` | Update an existing webhook |
|
|
685
|
+
| | `delete_webhook` | Delete a webhook permanently |
|
|
686
|
+
| **User Groups** | `list_user_groups` | List all user groups in the workspace |
|
|
687
|
+
| | `create_user_group` | Create a new user group |
|
|
688
|
+
| | `update_user_group` | Rename a group or add/remove members |
|
|
689
|
+
| | `delete_user_group` | Delete a user group |
|
|
690
|
+
| **Guests** | `invite_guest` | Invite a guest to the workspace (Enterprise) |
|
|
691
|
+
| | `get_guest` | Get guest details (Enterprise) |
|
|
692
|
+
| | `edit_guest` | Edit guest display name or permissions (Enterprise) |
|
|
693
|
+
| | `remove_guest` | Remove a guest from the workspace (Enterprise) |
|
|
694
|
+
| | `add_guest_to_task` | Grant guest access to a task (Enterprise) |
|
|
695
|
+
| | `remove_guest_from_task` | Revoke guest access from a task (Enterprise) |
|
|
696
|
+
| | `add_guest_to_list` | Grant guest access to a list (Enterprise) |
|
|
697
|
+
| | `remove_guest_from_list` | Revoke guest access from a list (Enterprise) |
|
|
698
|
+
| | `add_guest_to_folder` | Grant guest access to a folder (Enterprise) |
|
|
699
|
+
| | `remove_guest_from_folder` | Revoke guest access from a folder (Enterprise) |
|
|
588
700
|
| **Task Templates** | `get_task_templates` | List available workspace templates |
|
|
589
701
|
| | `create_task_from_template` | Create a task from a template |
|
|
590
702
|
| **Feedback** | `submit_feedback` | Submit feedback or bug reports |
|
|
@@ -611,103 +723,32 @@ Restart your MCP Host (e.g., Cursor IDE). The server will validate your License
|
|
|
611
723
|
|
|
612
724
|
### Preset Configurations
|
|
613
725
|
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
<details>
|
|
617
|
-
<summary><strong>📋 Auditor</strong></summary>
|
|
618
|
-
|
|
619
|
-
Best for agents that need to view data without making any changes. Includes read access for tasks, structural elements, goals, docs, and chat.
|
|
620
|
-
|
|
621
|
-
**HTTP Header:**
|
|
622
|
-
`X-Enabled-Tools: get_workspace_hierarchy,get_workspace_members,find_member_by_name,get_task,get_workspace_tasks,get_task_comments,get_task_links,get_list,manage_custom_fields,manage_spaces,manage_goals,manage_views,get_folder,get_task_time_entries,get_workspace_time_entries,get_current_time_entry,get_document,list_documents,list_document_pages,get_document_pages,get_chat_channels,get_chat_messages,get_task_templates,submit_feedback`
|
|
623
|
-
|
|
624
|
-
**JSON / Env:**
|
|
625
|
-
```json
|
|
626
|
-
"env": {
|
|
627
|
-
"ENABLED_TOOLS": "get_workspace_hierarchy,get_workspace_members,find_member_by_name,get_task,get_workspace_tasks,get_task_comments,get_task_links,get_list,manage_custom_fields,manage_spaces,manage_goals,manage_views,get_folder,get_task_time_entries,get_workspace_time_entries,get_current_time_entry,get_document,list_documents,list_document_pages,get_document_pages,get_chat_channels,get_chat_messages,get_task_templates,submit_feedback"
|
|
628
|
-
}
|
|
629
|
-
```
|
|
630
|
-
</details>
|
|
631
|
-
|
|
632
|
-
<details>
|
|
633
|
-
<summary><strong>👷 Task Worker</strong></summary>
|
|
634
|
-
|
|
635
|
-
Focused on day-to-day task management. Can create/update/delete tasks, track time, manage checklists, and update goals. Cannot modify workspace structure (Lists/Folders).
|
|
636
|
-
|
|
637
|
-
**HTTP Header:**
|
|
638
|
-
`X-Enabled-Tools: get_workspace_hierarchy,find_member_by_name,create_task,get_task,update_task,manage_custom_fields,move_task,duplicate_task,delete_task,get_workspace_tasks,get_task_comments,create_task_comment,attach_task_file,add_task_to_list,remove_task_from_list,add_task_link,get_task_links,delete_task_link,create_checklist,edit_checklist,delete_checklist,create_checklist_item,edit_checklist_item,delete_checklist_item,get_list,manage_goals,manage_views,get_folder,add_tag_to_task,remove_tag_from_task,start_time_tracking,stop_time_tracking,get_task_templates,create_task_from_template,submit_feedback`
|
|
639
|
-
|
|
640
|
-
**JSON / Env:**
|
|
641
|
-
```json
|
|
642
|
-
"env": {
|
|
643
|
-
"ENABLED_TOOLS": "get_workspace_hierarchy,find_member_by_name,create_task,get_task,update_task,manage_custom_fields,move_task,duplicate_task,delete_task,get_workspace_tasks,get_task_comments,create_task_comment,attach_task_file,add_task_to_list,remove_task_from_list,add_task_link,get_task_links,delete_task_link,create_checklist,edit_checklist,delete_checklist,create_checklist_item,edit_checklist_item,delete_checklist_item,get_list,manage_goals,manage_views,get_folder,add_tag_to_task,remove_tag_from_task,start_time_tracking,stop_time_tracking,get_task_templates,create_task_from_template,submit_feedback"
|
|
644
|
-
}
|
|
645
|
-
```
|
|
646
|
-
</details>
|
|
647
|
-
|
|
648
|
-
<details>
|
|
649
|
-
<summary><strong>⏱️ Time Specialist</strong></summary>
|
|
650
|
-
|
|
651
|
-
For agents dedicated to logging time and generating timesheets.
|
|
652
|
-
|
|
653
|
-
**HTTP Header:**
|
|
654
|
-
`X-Enabled-Tools: get_workspace_hierarchy,find_member_by_name,get_task,get_workspace_tasks,get_task_time_entries,get_workspace_time_entries,start_time_tracking,stop_time_tracking,add_time_entry,delete_time_entry,get_current_time_entry,submit_feedback`
|
|
655
|
-
|
|
656
|
-
**JSON / Env:**
|
|
657
|
-
```json
|
|
658
|
-
"env": {
|
|
659
|
-
"ENABLED_TOOLS": "get_workspace_hierarchy,find_member_by_name,get_task,get_workspace_tasks,get_task_time_entries,get_workspace_time_entries,start_time_tracking,stop_time_tracking,add_time_entry,delete_time_entry,get_current_time_entry,submit_feedback"
|
|
660
|
-
}
|
|
661
|
-
```
|
|
662
|
-
</details>
|
|
663
|
-
|
|
664
|
-
<details>
|
|
665
|
-
<summary><strong>🏗️ Project Manager</strong></summary>
|
|
726
|
+
Simplify setup by using **Personas**. You can set a persona via the `CLICKUP_MCP_PERSONA` environment variable or the `X-Persona` HTTP header to automatically filter a set of tools.
|
|
666
727
|
|
|
667
|
-
|
|
728
|
+
Multiple personas can be combined (e.g., `"X-Persona": "task_worker,time_specialist"`).
|
|
668
729
|
|
|
669
|
-
|
|
670
|
-
|
|
730
|
+
| Persona | Description | Target Use Case |
|
|
731
|
+
|---------|-------------|-----------------|
|
|
732
|
+
| 📋 `auditor` | Read-only access | Viewing tasks, goals, docs, and chat without modification. |
|
|
733
|
+
| 👷 `task_worker` | Daily management | Creating/updating tasks, time tracking, checklists. |
|
|
734
|
+
| ⏱️ `time_specialist` | Time tracking focus | Logging time, timesheets, and entry history. |
|
|
735
|
+
| 🏗️ `project_manager` | High-level control | Structural management, spaces, folders, bulk operations. |
|
|
736
|
+
| 📚 `content_manager` | Communication & Files | Docs, chat, messaging, comments, and attachments. |
|
|
737
|
+
| 🏢 `workspace_admin` | Administrative control | Permissions, guest management, and audit logs. |
|
|
738
|
+
| 💻 `developer` | Programmatic focus | Webhooks, custom fields, and bulk automation. |
|
|
739
|
+
| 🛡️ `safe_power_user` | Full access (Filtered) | All tools EXCEPT destructive ones (deletes/removals). |
|
|
671
740
|
|
|
672
|
-
**
|
|
741
|
+
**Local (Environment Variable):**
|
|
673
742
|
```json
|
|
674
|
-
"
|
|
675
|
-
"ENABLED_TOOLS": "get_workspace_hierarchy,get_workspace_members,find_member_by_name,create_task,get_task,update_task,get_workspace_tasks,create_bulk_tasks,update_bulk_tasks,move_bulk_tasks,delete_bulk_tasks,create_list,create_list_in_folder,get_list,update_list,move_list,delete_list,manage_custom_fields,manage_spaces,manage_goals,manage_views,create_folder,get_folder,update_folder,move_folder,delete_folder,manage_space_tags,get_task_templates,create_task_from_template,submit_feedback"
|
|
676
|
-
}
|
|
743
|
+
"CLICKUP_MCP_PERSONA": "task_worker"
|
|
677
744
|
```
|
|
678
|
-
</details>
|
|
679
|
-
|
|
680
|
-
<details>
|
|
681
|
-
<summary><strong>📚 Content Manager</strong></summary>
|
|
682
745
|
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
**HTTP Header:**
|
|
686
|
-
`X-Enabled-Tools: get_workspace_hierarchy,find_member_by_name,get_task,get_workspace_tasks,get_task_comments,create_task_comment,manage_views,create_document,get_document,list_documents,list_document_pages,get_document_pages,create_document_page,update_document_page,create_chat_channel,get_chat_channels,create_chat_message,get_chat_messages,submit_feedback`
|
|
687
|
-
|
|
688
|
-
**JSON / Env:**
|
|
746
|
+
-or- **Remote (Header):**
|
|
689
747
|
```json
|
|
690
|
-
"
|
|
691
|
-
"ENABLED_TOOLS": "get_workspace_hierarchy,find_member_by_name,get_task,get_workspace_tasks,get_task_comments,create_task_comment,manage_views,create_document,get_document,list_documents,list_document_pages,get_document_pages,create_document_page,update_document_page,create_chat_channel,get_chat_channels,create_chat_message,get_chat_messages,submit_feedback"
|
|
692
|
-
}
|
|
748
|
+
"X-Persona": "task_worker"
|
|
693
749
|
```
|
|
694
|
-
</details>
|
|
695
750
|
|
|
696
|
-
|
|
697
|
-
<summary><strong>🛡️ Safe Power User</strong></summary>
|
|
698
|
-
|
|
699
|
-
Enabled everything **except** destructive tools. This configuration covers **all 67 tools** by default, only blocking the 8 specific deletion tools listed below. Useful for capable agents that need full access (including Folder/List management) but shouldn't destroy data.
|
|
700
|
-
|
|
701
|
-
**HTTP Header:**
|
|
702
|
-
`X-Disabled-Tools: delete_task,delete_bulk_tasks,delete_task_link,delete_checklist,delete_checklist_item,delete_list,delete_folder,delete_time_entry`
|
|
703
|
-
|
|
704
|
-
**JSON / Env:**
|
|
705
|
-
```json
|
|
706
|
-
"env": {
|
|
707
|
-
"DISABLED_TOOLS": "delete_task,delete_bulk_tasks,delete_task_link,delete_checklist,delete_checklist_item,delete_list,delete_folder,delete_time_entry"
|
|
708
|
-
}
|
|
709
|
-
```
|
|
710
|
-
</details>
|
|
751
|
+
> **💡 Need to customize?** To view the exact tools included in each preset or to build a custom list based on a persona, see the [Personas Reference Guide](./docs/reference/personas.md).
|
|
711
752
|
|
|
712
753
|
---
|
|
713
754
|
|
|
@@ -732,4 +773,4 @@ This software makes use of third-party APIs and may reference trademarks or bran
|
|
|
732
773
|
|
|
733
774
|
<div align="center">
|
|
734
775
|
<sub>Created by <a href="https://github.com/taazkareem">taazkareem</a></sub>
|
|
735
|
-
</div>
|
|
776
|
+
</div>
|