@taazkareem/clickup-mcp-server 0.13.1 → 0.14.1

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.
Files changed (96) hide show
  1. package/README.md +346 -232
  2. package/build/auth/routes.js +1 -1
  3. package/build/config.js +1 -1
  4. package/build/index.js +1 -1
  5. package/build/license.js +1 -1
  6. package/build/logger.js +1 -1
  7. package/build/middleware/auth.js +1 -1
  8. package/build/middleware/security.js +1 -1
  9. package/build/personas.js +1 -0
  10. package/build/prompts.js +1 -1
  11. package/build/server.js +1 -1
  12. package/build/services/clickup/audit-logs.js +1 -0
  13. package/build/services/clickup/base.js +1 -1
  14. package/build/services/clickup/bulk.js +1 -1
  15. package/build/services/clickup/chat.js +1 -1
  16. package/build/services/clickup/custom-field.js +1 -1
  17. package/build/services/clickup/document.js +1 -1
  18. package/build/services/clickup/errors.js +1 -1
  19. package/build/services/clickup/folder.js +1 -1
  20. package/build/services/clickup/goal.js +1 -1
  21. package/build/services/clickup/guest.js +1 -0
  22. package/build/services/clickup/index.js +1 -1
  23. package/build/services/clickup/list.js +1 -1
  24. package/build/services/clickup/rate-limiter.js +1 -1
  25. package/build/services/clickup/sprint.js +1 -0
  26. package/build/services/clickup/tag.js +1 -1
  27. package/build/services/clickup/task/index.js +1 -1
  28. package/build/services/clickup/task/task-attachments.js +1 -1
  29. package/build/services/clickup/task/task-checklists.js +1 -1
  30. package/build/services/clickup/task/task-comments.js +1 -1
  31. package/build/services/clickup/task/task-core.js +1 -1
  32. package/build/services/clickup/task/task-relationships.js +1 -1
  33. package/build/services/clickup/task/task-search.js +1 -1
  34. package/build/services/clickup/task/task-service.js +1 -1
  35. package/build/services/clickup/task/task-tags.js +1 -1
  36. package/build/services/clickup/task-templates.js +1 -1
  37. package/build/services/clickup/time.js +1 -1
  38. package/build/services/clickup/types.js +1 -1
  39. package/build/services/clickup/user-group.js +1 -0
  40. package/build/services/clickup/view.js +1 -1
  41. package/build/services/clickup/webhook.js +1 -0
  42. package/build/services/clickup/workspace.js +1 -1
  43. package/build/services/oauth.js +1 -1
  44. package/build/services/shared.js +1 -1
  45. package/build/sse_server.js +1 -1
  46. package/build/tools/attachment.js +1 -0
  47. package/build/tools/audit-logs.js +1 -0
  48. package/build/tools/chat/handlers.js +1 -1
  49. package/build/tools/chat/index.js +1 -1
  50. package/build/tools/chat/utils.js +1 -1
  51. package/build/tools/custom-field.js +1 -1
  52. package/build/tools/documents.js +1 -1
  53. package/build/tools/feedback.js +1 -1
  54. package/build/tools/folder.js +1 -1
  55. package/build/tools/goal.js +1 -1
  56. package/build/tools/guest.js +1 -0
  57. package/build/tools/index.js +1 -1
  58. package/build/tools/list.js +1 -1
  59. package/build/tools/registry.js +1 -1
  60. package/build/tools/space.js +1 -1
  61. package/build/tools/sprint.js +1 -0
  62. package/build/tools/tag.js +1 -1
  63. package/build/tools/task/bulk-operations.js +1 -1
  64. package/build/tools/task/checklists.js +1 -1
  65. package/build/tools/task/handlers.js +1 -1
  66. package/build/tools/task/index.js +1 -1
  67. package/build/tools/task/main.js +1 -1
  68. package/build/tools/task/markdown-converter.js +1 -1
  69. package/build/tools/task/params.js +1 -1
  70. package/build/tools/task/relationships.js +1 -1
  71. package/build/tools/task/single-operations.js +1 -1
  72. package/build/tools/task/utilities.js +1 -1
  73. package/build/tools/task/workspace-operations.js +1 -1
  74. package/build/tools/task-templates.js +1 -1
  75. package/build/tools/time_entries.js +1 -0
  76. package/build/tools/user-group.js +1 -0
  77. package/build/tools/utils.js +1 -1
  78. package/build/tools/view.js +1 -1
  79. package/build/tools/webhook.js +1 -0
  80. package/build/tools/workspace.js +1 -1
  81. package/build/transport/mcp-handler.js +1 -1
  82. package/build/utils/cache.js +1 -1
  83. package/build/utils/color-processor.js +1 -1
  84. package/build/utils/concurrency-utils.js +1 -1
  85. package/build/utils/context-utils.js +1 -0
  86. package/build/utils/date-utils.js +1 -1
  87. package/build/utils/log-sanitizer.js +1 -1
  88. package/build/utils/member-utils.js +1 -0
  89. package/build/utils/request-utils.js +1 -1
  90. package/build/utils/resolver-utils.js +1 -1
  91. package/build/utils/sponsor-service.js +1 -1
  92. package/build/utils/token-utils.js +1 -1
  93. package/package.json +2 -1
  94. package/build/tools/member.js +0 -1
  95. package/build/tools/task/attachments.js +0 -1
  96. package/build/tools/task/time-tracking.js +0 -1
package/README.md CHANGED
@@ -1,23 +1,23 @@
1
- # ClickUp MCP Server — Premium
1
+ <h1 align="center">ClickUp MCP Server — Premium</h1>
2
2
 
3
- ![ClickUp MCP Server Premium Image](https://raw.githubusercontent.com/taazkareem/clickup-mcp-server/main/assets/images/clickup_mcp_neon_logo_blue.jpg)
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
- <div align="center">
6
-
7
- [![npm version](https://img.shields.io/npm/v/@taazkareem/clickup-mcp-server.svg)](https://www.npmjs.com/package/@taazkareem/clickup-mcp-server)
8
- [![npm downloads](https://img.shields.io/npm/dm/@taazkareem/clickup-mcp-server.svg)](https://www.npmjs.com/package/@taazkareem/clickup-mcp-server)
9
- [![License](https://img.shields.io/badge/License-Proprietary-red.svg)](LICENSE)
10
- ![Top 3 on Google](https://img.shields.io/badge/Ranked_Top_3_on_Google-🔥-orange.svg)
11
- ![Trending MCP Server](https://img.shields.io/badge/Trending-MCP_Server-blueviolet.svg)
12
- [![Maintained](https://img.shields.io/badge/Maintained%3F-yes-blue.svg)](https://github.com/TaazKareem/clickup-mcp-server/graphs/commit-activity)
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,17 +28,19 @@ The industry-standard ClickUp integration for AI.
28
28
 
29
29
  | Links&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | Quick&nbsp;Start&nbsp;&&nbsp;Installation |
30
30
  | :--- | :--- |
31
- | •&nbsp;[Features](#features)<br>•&nbsp;[Premium&nbsp;Access](#premium-access)<br>•&nbsp;[Available&nbsp;Tools](#available-tools)<br>•&nbsp;[Adv.&nbsp;Config](#advanced-configuration)<br>•&nbsp;[FAQ](#faq)<br>•&nbsp;[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/cursor-white.svg" height="16" style="vertical-align: middle;"> Cursor](#cursor-setup)</td> <td width="155" 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 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&nbsp;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&nbsp;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&nbsp;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&nbsp;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/openclaw-logo.svg" height="16" style="vertical-align: middle;"> OpenClaw](#openclaw-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> |
31
+ | •&nbsp;[Features](#features)<br>•&nbsp;[Premium&nbsp;Access](#premium-access)<br>•&nbsp;[Available&nbsp;Tools](#available-tools)<br>•&nbsp;[Adv.&nbsp;Config](#advanced-configuration)<br>•&nbsp;[FAQ](#faq)<br>•&nbsp;[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&nbsp;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&nbsp;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&nbsp;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&nbsp;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
 
35
35
  ## <a name="features"></a>✨ Features
36
36
 
37
+ **🔥 Multi-Account Support:** Manage multiple authorized workspaces seamlessly in a single session. [See setup](#multi-workspace-support)
38
+
37
39
  <table border="0" style="width: 100%; border-collapse: collapse;">
38
40
  <tr style="border: none;">
39
41
  <td width="50%" style="vertical-align: top; border: none; padding-bottom: 20px;">
40
42
  <strong>🔐 Hybrid Authentication</strong><br>
41
- MCP spec compliant OAuth 2.1 with advanced security hardening. Backwards compatible with API Key/Team ID. See [Security](docs/security.md).
43
+ 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(s).
42
44
  </td>
43
45
  <td width="50%" style="vertical-align: top; border: none; padding-bottom: 20px;">
44
46
  <strong>🔍 Intelligent Search & Resolution</strong><br>
@@ -48,31 +50,41 @@ The industry-standard ClickUp integration for AI.
48
50
  <tr style="border: none;">
49
51
  <td style="vertical-align: top; border: none; padding-bottom: 20px;">
50
52
  <strong>📝 Task Management</strong><br>
51
- Create, update, move, delete, duplicate, and link tasks. Supports bulk operations, nested subtasks, checklists, natural language dates, custom task IDs, custom task types, custom fields, and task templates.
53
+ 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
54
  </td>
53
55
  <td style="vertical-align: top; border: none; padding-bottom: 20px;">
54
56
  <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.
57
+ 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
58
  </td>
57
59
  </tr>
58
60
  <tr style="border: none;">
59
61
  <td style="vertical-align: top; border: none; padding-bottom: 20px;">
60
62
  <strong>📄 Document Management</strong><br>
61
- Create, read, and append to ClickUp Docs with full markdown text.
63
+ Create, read, and append to ClickUp Docs with full markdown text. Manage pages within documents for structured, long-form content (consolidated action-based tool).
64
+ </td>
65
+ <td style="vertical-align: top; border: none; padding-bottom: 20px;">
66
+ <strong>💬 Comments & Chat</strong><br>
67
+ 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.
68
+ </td>
69
+ </tr>
70
+ <tr style="border: none;">
71
+ <td style="vertical-align: top; border: none; padding-bottom: 20px;">
72
+ <strong>🎯 Goals & Key Results</strong><br>
73
+ 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
74
  </td>
63
75
  <td style="vertical-align: top; border: none; padding-bottom: 20px;">
64
- <strong>💬 Chat & Collaboration</strong><br>
65
- Send/retrieve messages in channels and comments with threaded replies, rich-text conversion and user @mention support.
76
+ <strong>📋 Views</strong><br>
77
+ 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
78
  </td>
67
79
  </tr>
68
80
  <tr style="border: none;">
69
81
  <td style="vertical-align: top; border: none;">
70
- <strong>🌳 Workspace Control</strong><br>
71
- Create and navigate spaces, folders, lists, and tags. Switch workspaces mid-conversation.
82
+ <strong>🗂️ Task Templates</strong><br>
83
+ Browse available task templates and instantly create tasks from them. Streamlines repeatable workflows without manual setup each time.
72
84
  </td>
73
85
  <td style="vertical-align: top; border: none;">
74
- <strong>🧠 Smart Defaults</strong><br>
75
- Session-isolated caching for fast, secure multi-tenant operation.
86
+ <strong>🌳 Workspace Control</strong><br>
87
+ 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
88
  </td>
77
89
  </tr>
78
90
  </table>
@@ -81,19 +93,34 @@ The industry-standard ClickUp integration for AI.
81
93
 
82
94
  ## <a name="premium-access"></a>💎 Premium Access
83
95
 
84
- **This project operates on a Sponsorware model.** A license grants **full access to all 67 premium tools** with any of the following plans:
96
+ <div align="center">
97
+
98
+ <h3>Unlock 150 Enterprise-Grade Custom Tools</h3>
99
+
100
+ This project transitioned from open-source to a paid model for sustainable full-time development and priority support.
101
+ A license grants full, unrestricted access to all features across your agents⎯no limits.
85
102
 
86
- | [**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) |
103
+ <br>
104
+
105
+ | [**Monthly**](https://buy.polar.sh/polar_cl_3xQojQLgzQXKCLzsxc49YfL6z8hzSBBqh9ivy1qZdwW?utm_source=github&utm_medium=readme) $9/mo | [**Annual**](https://buy.polar.sh/polar_cl_3a8a3055T4CHIoVlSQPsNshOJLUwsM8AHAiIR3y9wTZ?utm_source=github&utm_medium=readme) $59/yr | [**Lifetime**](https://buy.polar.sh/polar_cl_4ha3uVyJTu4iPZJS1QbBYNTI1MKTvaXXCkZTb45vPPF?utm_source=github&utm_medium=readme) $89 w/ code |
87
106
  | :--- | :--- | :--- |
88
- | • Pay-as-you-go flexibility<br>• 3 device activations<br>• Cancel anytime | • ONLY $4.92/mo <br>• 3 device activations<br>• Priority bug fixes | • **25% OFF** code: `MAR25` <br>• 3 device activations<br>• **Best Value** (One-time payment)|
107
+ | • 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` |
108
+ <br>
109
+
110
+ <p align="center">
111
+ <img src="./assets/images/line.svg" width="150" alt="" style="vertical-align: middle;">&nbsp;&nbsp;<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>&nbsp;&nbsp;<img src="./assets/images/line.svg" width="150" alt="" style="vertical-align: middle;">
112
+ </p>
113
+
114
+ <br>
89
115
 
90
- **⚡️ Instant Delivery:** Your License Key is delivered immediately via **Polar.sh**. Total setup time is under 2 minutes.
116
+ **⚡️ Instant Key Delivery (Polar.sh)** &nbsp; &nbsp; **Setup takes less than 2 mins** &nbsp; &nbsp; &nbsp;
117
+
118
+ </div>
91
119
 
92
- [![Purchase License](https://img.shields.io/badge/Purchase%20License-0069ff?style=for-the-badge&logo=polar&logoColor=white)](https://buy.polar.sh/polar_cl_tZ2q8jRvtaaduurOkQKKJmRgdD43ZiB5K0GZn0aQcur?utm_source=github&utm_medium=readme)
93
120
 
94
121
  ---
95
122
 
96
- ## 🚀 Quick Start & Installation
123
+ ## 🚀 Quick Start
97
124
 
98
125
  ### 1. Prerequisites
99
126
  * **License Key:** See above
@@ -106,53 +133,68 @@ The industry-standard ClickUp integration for AI.
106
133
  - Look at the URL: `https://app.clickup.com/1234567/v/li/987654321`.
107
134
  - The first number (`1234567`) directly after `clickup.com/` is your **Team ID** (Workspace ID).
108
135
 
109
- ### 2. Choose your Integration
136
+ ### 2. Choose your MCP Host & Transport
110
137
 
111
- <a name="cursor-setup"></a>
112
- <details open>
113
- <summary>&nbsp;<img src="./assets/logos/cursor-white.svg" height="22" align="center"> <strong>Cursor</strong></summary>
114
-
115
- **Configuration Path:** `<project-root>/.cursor/mcp.json`
138
+ <a name="openclaw-setup"></a>
139
+ <details>
140
+ <summary>&nbsp;<img src="./assets/logos/openclaw-logo.svg" height="22" align="center"> <strong>OpenClaw (via mcporter) </strong> <sub>&nbsp;FEATURED</sub></summary>
116
141
 
117
- **Option A: Cloud / Remote (Easiest)**
142
+ **1. Enable** mcporter in `~/.openclaw/openclaw.json`:
118
143
  ```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
- }
144
+ {"skills": {"allowBundled": ["mcporter"]}}
129
145
  ```
130
146
 
131
- **Option B: Local (stdio)**
132
- ```json
133
- {
134
- "mcpServers": {
135
- "ClickUp": {
136
- "command": "npx",
137
- "args": ["-y", "@taazkareem/clickup-mcp-server@latest"],
138
- "env": {
139
- "CLICKUP_API_KEY": "your-api-key",
140
- "CLICKUP_TEAM_ID": "your-team-id",
141
- "CLICKUP_MCP_LICENSE_KEY": "your-license-key"
142
- }
143
- }
144
- }
145
- }
147
+ **2. Configure & Auth**
148
+ Connect the server and authorize via browser (tokens are cached):
149
+
150
+ ```bash
151
+ # Add ClickUp as a remote server
152
+ mcporter config add ClickUp https://clickup-mcp.taazkareem.com/mcp --auth oauth --header "X-License-Key=your-license-key"
153
+
154
+ # Authenticate session
155
+ mcporter auth ClickUp
156
+ ```
157
+
158
+ **Optional: Multiple Personas**
159
+ The most robust and flexible way to manage personas is to define multiple named configurations in your **agent-specific** `mcporter.json` file. This isolates credentials and policies per-agent.
160
+
161
+ ```bash
162
+ # Define an Auditor persona (Read-only) in your workspace config
163
+ mcporter --config <agent-workspace>/config/mcporter.json config add ClickUp-Auditor https://clickup-mcp.taazkareem.com/mcp \
164
+ --header "X-Persona=auditor" \
165
+ --header "X-License-Key=your-license-key" \
166
+ --header "X-ClickUp-Key=your-api-key" \
167
+ --header "X-ClickUp-Team-Id=your-team-id"
168
+
169
+ # Define a Task Worker persona (Daily CRUD) in the same or different workspace
170
+ mcporter --config <agent-workspace-2>/config/mcporter.json config add ClickUp-Worker https://clickup-mcp.taazkareem.com/mcp \
171
+ --header "X-Persona=task_worker" \
172
+ --header "X-License-Key=your-license-key" \
173
+ --header "X-ClickUp-Key=your-api-key" \
174
+ --header "X-ClickUp-Team-Id=your-team-id"
175
+
176
+ # Now the OpenClaw sub-agent can see the optimized schema and call its focused tools like:
177
+ mcporter list ClickUp-Auditor --schema
178
+ mcporter call ClickUp-Auditor.get_workspace
179
+
180
+ mcporter list ClickUp-Worker --schema
181
+ mcporter call ClickUp-Worker.create_task listId="123456789" name="New Task"
146
182
  ```
183
+
184
+ >
185
+ > **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 config/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.
186
+
187
+ To see all available personas and what they do, see the [Advanced Configuration](#advanced-configuration) section below.
188
+
147
189
  </details>
148
190
 
149
- <a name="windsurf-setup"></a>
191
+ <a name="cursor-setup"></a>
150
192
  <details>
151
- <summary>&nbsp;<img src="./assets/logos/windsurf-white.svg" height="22" align="center"> <strong>Windsurf</strong></summary>
193
+ <summary>&nbsp;<img src="./assets/logos/cursor-white.svg" height="22" align="center"> <strong>Cursor</strong></summary>
152
194
 
153
- **Configuration Path:** `<project-root>/.codeium/windsurf/mcp_config.json`
195
+ **Configuration Path:** `<project-root>/.cursor/mcp.json`
154
196
 
155
- **Option A: Cloud / Remote (Easiest)**
197
+ **Option A: Remote / Streamable HTTP (Easiest)**
156
198
  ```json
157
199
  {
158
200
  "mcpServers": {
@@ -166,7 +208,7 @@ The industry-standard ClickUp integration for AI.
166
208
  }
167
209
  ```
168
210
 
169
- **Option B: Local (stdio)**
211
+ **Option B: Local / STDIO**
170
212
  ```json
171
213
  {
172
214
  "mcpServers": {
@@ -192,7 +234,7 @@ The industry-standard ClickUp integration for AI.
192
234
  - **Global:** `~/Library/Application Support/Code/User/mcp.json`
193
235
  - **Local:** `<project-root>/.vscode/mcp.json`
194
236
 
195
- **Option A: Cloud / Remote (Easiest)**
237
+ **Option A: Remote / Streamable HTTP (Easiest)**
196
238
  ```json
197
239
  {
198
240
  "mcpServers": {
@@ -206,7 +248,7 @@ The industry-standard ClickUp integration for AI.
206
248
  }
207
249
  ```
208
250
 
209
- **Option B: Local (stdio)**
251
+ **Option B: Local / STDIO**
210
252
  ```json
211
253
  {
212
254
  "mcpServers": {
@@ -230,7 +272,7 @@ The industry-standard ClickUp integration for AI.
230
272
 
231
273
  **Configuration Path:** `<project-root>/.roo/mcp.json`
232
274
 
233
- **Option A: Cloud / Remote (Easiest)**
275
+ **Option A: Remote / Streamable HTTP (Easiest)**
234
276
  ```json
235
277
  {
236
278
  "mcpServers": {
@@ -244,7 +286,7 @@ The industry-standard ClickUp integration for AI.
244
286
  }
245
287
  ```
246
288
 
247
- **Option B: Local (stdio)**
289
+ **Option B: Local / STDIO**
248
290
  ```json
249
291
  {
250
292
  "mcpServers": {
@@ -300,9 +342,9 @@ claude mcp add --transport http ClickUp https://clickup-mcp.taazkareem.com/mcp \
300
342
  <details>
301
343
  <summary>&nbsp;<img src="https://cdn.simpleicons.org/n8n/FF6D5A" height="22" align="center"> <strong>n8n</strong></summary>
302
344
 
303
- **Option A: Cloud / Remote (Recommended)**
345
+ **Option A: Remote / Streamable HTTP (Recommended)**
304
346
  1. In n8n, add an **"MCP Client"** node.
305
- 2. Set Connection Type to `HTTP Streamable`.
347
+ 2. Set Connection Type to `Streamable HTTP`.
306
348
  3. Auth Type: `Multiple Headers Auth`.
307
349
  4. Header: `X-License-Key` Value: `your-license-key`
308
350
  5. URL: `https://clickup-mcp.taazkareem.com/mcp`
@@ -359,14 +401,14 @@ Codex clients (CLI, Desktop App, and VS Code extension) share a single source of
359
401
  - **Global:** `~/.codex/config.toml`
360
402
  - **Local:** `<project-root>/.codex/config.toml`
361
403
 
362
- **Option A: Cloud / Remote (Easiest)**
404
+ **Option A: Remote / Streamable HTTP (Easiest)**
363
405
  ```toml
364
406
  [mcp_servers.ClickUp]
365
407
  url = "https://clickup-mcp.taazkareem.com/mcp"
366
408
  http_headers = { "X-License-Key" = "your-license-key" }
367
409
  ```
368
410
 
369
- **Option B: Local (stdio)**
411
+ **Option B: Local / STDIO**
370
412
  ```toml
371
413
  [mcp_servers.ClickUp]
372
414
  command = "npx"
@@ -431,48 +473,42 @@ auggie mcp add ClickUp --url https://clickup-mcp.taazkareem.com/mcp \
431
473
  ```
432
474
  </details>
433
475
 
434
- <a name="openclaw-setup"></a>
476
+ <a name="windsurf-setup"></a>
435
477
  <details>
436
- <summary>&nbsp;<img src="./assets/logos/openclaw-logo.svg" height="22" align="center"> <strong>OpenClaw (via mcporter) </strong></summary>
437
-
438
- **1. Enable** the mcporter skill in `~/.openclaw/openclaw.json`:
439
- ```json
440
- {"skills": {"allowBundled": ["mcporter"]}}
441
- ```
478
+ <summary>&nbsp;<img src="./assets/logos/windsurf-white.svg" height="22" align="center"> <strong>Windsurf</strong></summary>
442
479
 
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
- ```
480
+ **Configuration Path:** `<project-root>/.codeium/windsurf/mcp_config.json`
463
481
 
464
- **3. Authenticate** run once to authorize via browser (tokens are cached):
465
- ```bash
466
- mcporter auth ClickUp
482
+ **Option A: Remote / Streamable HTTP (Easiest)**
483
+ ```json
484
+ {
485
+ "mcpServers": {
486
+ "ClickUp": {
487
+ "url": "https://clickup-mcp.taazkareem.com/mcp",
488
+ "headers": {
489
+ "X-License-Key": "your-license-key"
490
+ }
491
+ }
492
+ }
493
+ }
467
494
  ```
468
495
 
469
- **4. Use:**
470
- ```bash
471
- mcporter call ClickUp.get_workspace_hierarchy team_id=0123456789
496
+ **Option B: Local / STDIO**
497
+ ```json
498
+ {
499
+ "mcpServers": {
500
+ "ClickUp": {
501
+ "command": "npx",
502
+ "args": ["-y", "@taazkareem/clickup-mcp-server@latest"],
503
+ "env": {
504
+ "CLICKUP_API_KEY": "your-api-key",
505
+ "CLICKUP_TEAM_ID": "your-team-id",
506
+ "CLICKUP_MCP_LICENSE_KEY": "your-license-key"
507
+ }
508
+ }
509
+ }
510
+ }
472
511
  ```
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
512
  </details>
477
513
 
478
514
  <a name="other-setup"></a>
@@ -517,13 +553,14 @@ Restart your MCP Host (e.g., Cursor IDE). The server will validate your License
517
553
  ## <a name="available-tools"></a>🛠️ Available Tools
518
554
 
519
555
  <details>
520
- <summary><strong>👇 Click to view all 67 available tools</strong></summary>
556
+ <summary><strong>👇 Click to view all 150 available tools</strong></summary>
521
557
 
522
558
  | Category | Tool | Description |
523
559
  | :--- | :--- | :--- |
524
- | **Workspace** | `get_workspace_hierarchy` | Get workspace structure |
525
- | | `get_workspace_members` | Get all workspace members |
526
- | | `find_member_by_name` | Find member by name or email |
560
+ | **Workspace** | `get_workspace` | Get workspace structure and metadata (hierarchy, members, plan, seats, shared items, custom task types) |
561
+ | | `get_workspace_seats` | Get member and guest seat utilization (used, total, available) |
562
+ | | `get_workspace_plan` | Get plan details for the workspace (plan_name, plan_id) |
563
+ | | `get_audit_logs` | Retrieve workspace audit logs (Enterprise only) |
527
564
  | **Tasks** | `create_task` | Create a task |
528
565
  | | `get_task` | Get single task details |
529
566
  | | `update_task` | Modify task properties |
@@ -537,54 +574,136 @@ Restart your MCP Host (e.g., Cursor IDE). The server will validate your License
537
574
  | | `move_bulk_tasks` | Move multiple tasks |
538
575
  | | `delete_bulk_tasks` | Delete multiple tasks |
539
576
  | | `get_workspace_tasks` | Search tasks with Deep Search filtering |
540
- | | `get_task_comments` | Get comments on a task |
541
- | | `create_task_comment` | Add a comment to a task |
542
- | | `attach_task_file` | Attach file to a task |
577
+ | | `get_comments` | Get comments on a task, list, or view |
578
+ | | `create_comment` | Create a comment on a task, list, or view |
579
+ | | `update_comment` | Edit or resolve a comment |
580
+ | | `delete_comment` | Delete a comment |
581
+ | | `get_comment_replies` | Get threaded replies for a comment |
582
+ | | `create_comment_reply` | Reply to a comment in a thread |
583
+ | | `add_comment_reaction` | Add an emoji reaction to a comment |
584
+ | | `remove_comment_reaction` | Remove an emoji reaction from a comment |
585
+ | | `get_comment_subtypes` | Get post subtype IDs for the workspace |
543
586
  | | `add_task_link` | Link two tasks together |
544
- | | `get_task_links` | Get task dependencies |
545
- | | `delete_task_link` | Remove task dependency |
587
+ | | `get_task_links` | Get task links |
588
+ | | `delete_task_link` | Remove a task link |
589
+ | | `add_task_dependency` | Set a blocking dependency between tasks |
590
+ | | `delete_task_dependency` | Remove a blocking dependency between tasks |
591
+ | **Attachments** | `list_attachments` | List attachments for a task or file custom field (v3) |
592
+ | | `get_attachment` | Get a specific attachment by ID or name (v3) |
593
+ | | `upload_attachment` | Upload a file to a task or file custom field (v3) |
546
594
  | **Checklists** | `create_checklist` | Add a checklist to a task |
547
595
  | | `edit_checklist` | Rename or reorder a checklist |
548
596
  | | `delete_checklist` | Delete a checklist and all its items |
549
597
  | | `create_checklist_item` | Add an item to a checklist |
550
- | | `edit_checklist_item` | Update item (rename, check/uncheck, assign) |
598
+ | | `edit_checklist_item` | Update a checklist item (name, resolved, assignee, nesting) |
551
599
  | | `delete_checklist_item` | Remove an item from a checklist |
552
- | **Lists** | `create_list` | Create list in space |
553
- | | `create_list_in_folder` | Create list in folder |
600
+ | **Sprints** | `get_active_sprint` | Auto-detect the currently active sprint; returns tasks if exactly one found |
601
+ | | `list_sprints` | List all sprints in a folder |
602
+ | | `get_sprint_tasks` | Get tasks for a specific sprint list |
603
+ | **Lists** | `list_lists` | Retrieve lists in a space (folderless) or in a folder |
554
604
  | | `get_list` | Get list details |
605
+ | | `create_list` | Create a list in a space or folder |
606
+ | | `create_list_from_template` | Create a new list from a template |
555
607
  | | `update_list` | Update list properties |
556
- | | `move_list` | Move list to new Space/Folder |
557
608
  | | `delete_list` | Delete a list |
558
- | **Custom Fields** | `manage_custom_fields` | Manage field definitions and task values (consolidated) |
559
- | **Spaces** | `manage_spaces` | List, get, create, update, or delete spaces |
560
- | **Goals** | `manage_goals` | List, get, create, update, or delete goals; manage key results |
561
- | **Views** | `manage_views` | List, get, create, update, or delete views; get tasks from view |
562
- | **Folders** | `create_folder` | Create folder |
563
- | | `get_folder` | Get folder details |
609
+ | | `move_list` | Move a list to a different space or folder (high-integrity) |
610
+ | | `set_list_permissions` | Update list privacy and sharing (ACLs) |
611
+ | **Custom Fields** | `list_custom_fields` | List field definitions for a list, folder, or space |
612
+ | | `create_custom_field` | Add a new field definition to a list |
613
+ | | `set_custom_field_value` | Set a field value on a task |
614
+ | | `remove_custom_field_value` | Clear a field value from a task |
615
+ | **Spaces** | `list_spaces` | List all spaces in the workspace |
616
+ | | `get_space` | Get space details |
617
+ | | `create_space` | Create a new space |
618
+ | | `update_space` | Update space properties |
619
+ | | `delete_space` | Delete a space |
620
+ | | `set_space_permissions` | Update space privacy and sharing (ACLs) |
621
+ | **Goals** | `list_goals` | List all goals in the workspace |
622
+ | | `get_goal` | Get a goal with its key results |
623
+ | | `create_goal` | Create a new goal |
624
+ | | `update_goal` | Update a goal's properties |
625
+ | | `delete_goal` | Delete a goal |
626
+ | | `create_key_result` | Add a key result to a goal |
627
+ | | `update_key_result` | Update a key result |
628
+ | | `delete_key_result` | Delete a key result |
629
+ | **Views** | `list_views` | List views for a space, folder, list, or workspace |
630
+ | | `get_view` | Get a single view |
631
+ | | `create_view` | Create a new view |
632
+ | | `update_view` | Update a view |
633
+ | | `delete_view` | Delete a view |
634
+ | | `get_view_tasks` | Get tasks in a view |
635
+ | **Folders** | `list_folders` | List all folders in a space |
636
+ | | `get_folder` | Get folder details and its contained lists |
637
+ | | `create_folder` | Create a folder in a space |
564
638
  | | `update_folder` | Update folder properties |
565
- | | `move_folder` | Move folder to new Space |
566
639
  | | `delete_folder` | Delete a folder |
567
- | **Tags** | `manage_space_tags` | List, create, update, or delete space tags |
640
+ | | `move_folder` | Move a folder to a different space (high-integrity) |
641
+ | | `set_folder_permissions` | Update folder privacy and sharing (ACLs) |
642
+ | | `create_folder_from_template` | Create a folder from a template in a space |
643
+ | **Tags** | `list_space_tags` | List all tags in a space |
644
+ | | `create_space_tag` | Create a new space tag |
645
+ | | `update_space_tag` | Update a space tag's name or colors |
646
+ | | `delete_space_tag` | Delete a tag from a space |
568
647
  | | `add_tag_to_task` | Add tag to task |
569
648
  | | `remove_tag_from_task` | Remove tag from task |
570
- | **Time Tracking** | `get_task_time_entries` | Get time entries with date filters |
571
- | | `get_workspace_time_entries` | Search all time entries |
572
- | | `start_time_tracking` | Start time tracking |
573
- | | `stop_time_tracking` | Stop current time tracking |
574
- | | `add_time_entry` | Add manual time entry |
575
- | | `delete_time_entry` | Delete time entry |
576
- | | `get_current_time_entry` | Get running timer |
577
- | **Docs** | `create_document` | Create a document |
578
- | | `get_document` | Get a document |
579
- | | `list_documents` | List documents |
580
- | | `list_document_pages` | List pages in a document |
581
- | | `get_document_pages` | Get page content |
582
- | | `create_document_page` | Add page to document |
583
- | | `update_document_page` | Update page content |
584
- | **Chat** | `create_chat_channel` | Create a chat channel |
585
- | | `get_chat_channels` | List chat channels |
649
+ | **Time Tracking** | `get_time_entries` | Fetch historical time entries |
650
+ | | `get_current_time_entry` | Get currently running timer |
651
+ | | `start_time_entry` | Start tracking time for a task |
652
+ | | `stop_time_entry` | Stop the active timer |
653
+ | | `add_time_entry` | Manually log a time entry |
654
+ | | `update_time_entry` | Modify an existing time entry |
655
+ | | `delete_time_entry` | Delete a time entry |
656
+ | | `get_time_entry_tags` | Fetch all workspace time entry tags |
657
+ | | `add_time_entry_tags` | Add a tag to a time entry |
658
+ | | `update_time_entry_tags` | Rename a workspace time entry tag globally |
659
+ | | `delete_time_entry_tags` | Remove a tag from a time entry |
660
+ | | `get_time_entry_history` | View edit history of a time entry |
661
+ | | `get_time_in_status` | Get time-in-status for multiple tasks |
662
+ | **Docs** | `list_documents` | List documents in a workspace or container |
663
+ | | `get_document` | Get document metadata |
664
+ | | `create_document` | Create a new standalone document |
665
+ | | `list_document_pages` | List all pages in a document |
666
+ | | `get_document_page` | Get content for a single page |
667
+ | | `get_document_pages` | Get content for multiple pages in one call |
668
+ | | `create_document_page` | Add a new page to a document |
669
+ | | `update_document_page` | Modify an existing page (replace/append/prepend) |
670
+ | **Chat** | `list_chat_channels` | List all channels in the workspace |
671
+ | | `get_chat_channel` | Get a single channel |
672
+ | | `create_chat_channel` | Create a new channel |
673
+ | | `update_chat_channel` | Update a channel |
674
+ | | `delete_chat_channel` | Delete a channel |
675
+ | | `get_chat_channel_members` | Get members of a channel |
676
+ | | `get_chat_channel_followers` | Get followers of a channel |
677
+ | | `create_chat_dm` | Create a direct message channel |
678
+ | | `get_chat_messages` | Get messages from a channel |
586
679
  | | `create_chat_message` | Send a message to a channel |
587
- | | `get_chat_messages` | Get message history |
680
+ | | `update_chat_message` | Edit a message |
681
+ | | `delete_chat_message` | Delete a message |
682
+ | | `get_chat_message_replies` | Get threaded replies to a message |
683
+ | | `create_chat_message_reply` | Reply to a message in a thread |
684
+ | | `add_chat_reaction` | Add an emoji reaction to a message |
685
+ | | `remove_chat_reaction` | Remove an emoji reaction |
686
+ | | `get_chat_reactions` | Get all reactions on a message |
687
+ | | `get_chat_tagged_users` | Get users tagged in a message |
688
+ | | `get_chat_message_subtypes` | Get post subtype IDs for the workspace |
689
+ | **Webhooks** | `list_webhooks` | List all webhooks in the workspace |
690
+ | | `create_webhook` | Create a new webhook |
691
+ | | `update_webhook` | Update an existing webhook |
692
+ | | `delete_webhook` | Delete a webhook permanently |
693
+ | **User Groups** | `list_user_groups` | List all user groups in the workspace |
694
+ | | `create_user_group` | Create a new user group |
695
+ | | `update_user_group` | Rename a group or add/remove members |
696
+ | | `delete_user_group` | Delete a user group |
697
+ | **Guests** | `invite_guest` | Invite a guest to the workspace (Enterprise) |
698
+ | | `get_guest` | Get guest details (Enterprise) |
699
+ | | `edit_guest` | Edit guest display name or permissions (Enterprise) |
700
+ | | `remove_guest` | Remove a guest from the workspace (Enterprise) |
701
+ | | `add_guest_to_task` | Grant guest access to a task (Enterprise) |
702
+ | | `remove_guest_from_task` | Revoke guest access from a task (Enterprise) |
703
+ | | `add_guest_to_list` | Grant guest access to a list (Enterprise) |
704
+ | | `remove_guest_from_list` | Revoke guest access from a list (Enterprise) |
705
+ | | `add_guest_to_folder` | Grant guest access to a folder (Enterprise) |
706
+ | | `remove_guest_from_folder` | Revoke guest access from a folder (Enterprise) |
588
707
  | **Task Templates** | `get_task_templates` | List available workspace templates |
589
708
  | | `create_task_from_template` | Create a task from a template |
590
709
  | **Feedback** | `submit_feedback` | Submit feedback or bug reports |
@@ -611,103 +730,98 @@ Restart your MCP Host (e.g., Cursor IDE). The server will validate your License
611
730
 
612
731
  ### Preset Configurations
613
732
 
614
- Here are copy-pasteable recommended configurations for common agent personas. You can use these in your `mcp.json` (env) or via HTTP headers. Customization is easy - just add or remove tools you don't need.
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.
733
+ 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.
620
734
 
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`
735
+ Multiple personas can be combined (e.g., `"X-Persona": "task_worker,time_specialist"`).
623
736
 
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>
666
-
667
- Workspace building and alignment. Creates spaces, folders, lists, and goals. Handles bulk task operations and templates.
668
-
669
- **HTTP Header:**
670
- `X-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`
737
+ <table border="0" style="width: 100%; border-collapse: collapse;">
738
+ <thead>
739
+ <tr style="border-bottom: 1px solid #ddd;">
740
+ <th align="left" width="200" style="padding: 10px; white-space: nowrap;">Persona</th>
741
+ <th align="left" width="180" style="padding: 10px;">Description</th>
742
+ <th align="left" style="padding: 10px;">Target Use Case</th>
743
+ </tr>
744
+ </thead>
745
+ <tbody>
746
+ <tr style="border-bottom: 1px solid #eee;">
747
+ <td style="padding: 10px; white-space: nowrap;">📋 <code>auditor</code></td>
748
+ <td style="padding: 10px;">Read-only access</td>
749
+ <td style="padding: 10px;">View tasks, goals, docs, and chat (Read-only).</td>
750
+ </tr>
751
+ <tr style="border-bottom: 1px solid #eee;">
752
+ <td style="padding: 10px; white-space: nowrap;">👷 <code>task_worker</code></td>
753
+ <td style="padding: 10px;">Daily management</td>
754
+ <td style="padding: 10px;">Task CRUD, time tracking, and checklists.</td>
755
+ </tr>
756
+ <tr style="border-bottom: 1px solid #eee;">
757
+ <td style="padding: 10px; white-space: nowrap;">⏱️ <code>time_specialist</code></td>
758
+ <td style="padding: 10px;">Time tracking focus</td>
759
+ <td style="padding: 10px;">Time logs, timesheets, and entry history.</td>
760
+ </tr>
761
+ <tr style="border-bottom: 1px solid #eee;">
762
+ <td style="padding: 10px; white-space: nowrap;">🏗️ <code>project_manager</code></td>
763
+ <td style="padding: 10px;">High-level control</td>
764
+ <td style="padding: 10px;">Spaces, folders, lists, and bulk operations.</td>
765
+ </tr>
766
+ <tr style="border-bottom: 1px solid #eee;">
767
+ <td style="padding: 10px; white-space: nowrap;">📚 <code>content_manager</code></td>
768
+ <td style="padding: 10px;">Communication</td>
769
+ <td style="padding: 10px;">Docs, chat, comments, and attachments.</td>
770
+ </tr>
771
+ <tr style="border-bottom: 1px solid #eee;">
772
+ <td style="padding: 10px; white-space: nowrap;">🏢 <code>workspace_admin</code></td>
773
+ <td style="padding: 10px;">Admin control</td>
774
+ <td style="padding: 10px;">Permissions, guests, and audit logs.</td>
775
+ </tr>
776
+ <tr style="border-bottom: 1px solid #eee;">
777
+ <td style="padding: 10px; white-space: nowrap;">💻 <code>developer</code></td>
778
+ <td style="padding: 10px;">Programmatic</td>
779
+ <td style="padding: 10px;">Webhooks, custom fields, bulk automation.</td>
780
+ </tr>
781
+ <tr style="border-bottom: 1px solid #eee;">
782
+ <td style="padding: 10px; white-space: nowrap;">🌟 <code>most_popular</code></td>
783
+ <td style="padding: 10px;">Common tools</td>
784
+ <td style="padding: 10px;">Most frequently called endpoints.</td>
785
+ </tr>
786
+ <tr style="border-bottom: 1px solid #eee;">
787
+ <td style="padding: 10px; white-space: nowrap;">🛡️ <code>safe_power_user</code></td>
788
+ <td style="padding: 10px;">Full access</td>
789
+ <td style="padding: 10px;">All tools except destructive deletes/removals.</td>
790
+ </tr>
791
+ </tbody>
792
+ </table>
671
793
 
672
- **JSON / Env:**
794
+ **Local (Environment Variable):**
673
795
  ```json
674
- "env": {
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
- }
796
+ "CLICKUP_MCP_PERSONA": "task_worker"
677
797
  ```
678
- </details>
679
-
680
- <details>
681
- <summary><strong>📚 Content Manager</strong></summary>
682
-
683
- For agents managing documentation and communication.
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
798
 
688
- **JSON / Env:**
799
+ -or- **Remote (Header):**
689
800
  ```json
690
- "env": {
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
- }
801
+ "X-Persona": "task_worker"
693
802
  ```
694
- </details>
695
803
 
696
- <details>
697
- <summary><strong>🛡️ Safe Power User</strong></summary>
804
+ > **💡 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).
805
+ ---
698
806
 
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.
807
+ ### <a name="multi-workspace-support"></a>🌍 Multi-Workspace Support
700
808
 
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`
809
+ Simultaneously federate OAuth and multiple API keys to manage tasks across different authorized ClickUp accounts/workspaces in a single session. Easily move or duplicate tasks between workspaces, configure AI Agents for cross-workspace automation, and more.
703
810
 
704
- **JSON / Env:**
811
+ **Remote (Headers):**
705
812
  ```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"
813
+ {
814
+ "mcpServers": {
815
+ "ClickUp": {
816
+ "url": "https://clickup-mcp.taazkareem.com/mcp",
817
+ "headers": {
818
+ "X-License-Key": "your-license-key",
819
+ "X-ClickUp-Additional-Keys": "shared_ws_api_key1,shared_ws_api_key2"
820
+ }
821
+ }
822
+ }
708
823
  }
709
824
  ```
710
- </details>
711
825
 
712
826
  ---
713
827
 
@@ -732,4 +846,4 @@ This software makes use of third-party APIs and may reference trademarks or bran
732
846
 
733
847
  <div align="center">
734
848
  <sub>Created by <a href="https://github.com/taazkareem">taazkareem</a></sub>
735
- </div>
849
+ </div>