@taazkareem/clickup-mcp-server 0.2.5 → 0.2.6
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 +23 -22
- package/build/index.js +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,30 +24,31 @@ npx -y @taazkareem/clickup-mcp-server \
|
|
|
24
24
|
## Features
|
|
25
25
|
|
|
26
26
|
- 🎯 **Task Management**
|
|
27
|
-
- Create, update, and delete tasks
|
|
28
|
-
- Move and duplicate tasks between lists, spaces, and folders
|
|
29
|
-
-
|
|
30
|
-
-
|
|
27
|
+
- Create, update, and delete individual tasks
|
|
28
|
+
- Move and duplicate tasks between lists, spaces, and folders
|
|
29
|
+
- Create multiple tasks in bulk
|
|
30
|
+
- View and modify task details and properties
|
|
31
31
|
|
|
32
32
|
- 📂 **Workspace Organization**
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
- 🤖 **AI
|
|
47
|
-
- Task
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
33
|
+
- Navigate complete workspace hierarchy (spaces, folders, lists)
|
|
34
|
+
- Tree structure with clear relationships
|
|
35
|
+
- Create and manage lists and folders
|
|
36
|
+
- Efficient path-based navigation
|
|
37
|
+
|
|
38
|
+
- 🔄 **Integration Features**
|
|
39
|
+
- Name or ID-based item lookup
|
|
40
|
+
- Case-insensitive name matching
|
|
41
|
+
- Markdown formatting support
|
|
42
|
+
- Built-in API rate limiting
|
|
43
|
+
- Comprehensive error handling
|
|
44
|
+
- Clear parameter validation
|
|
45
|
+
|
|
46
|
+
- 🤖 **AI-Powered Analysis**
|
|
47
|
+
- Task status summaries and overviews
|
|
48
|
+
- Priority analysis and recommendations
|
|
49
|
+
- Structured description generation
|
|
50
|
+
- Task relationship mapping
|
|
51
|
+
- Workspace organization insights
|
|
51
52
|
|
|
52
53
|
## Available Tools
|
|
53
54
|
|
package/build/index.js
CHANGED
|
@@ -57,7 +57,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
name: "create_task",
|
|
60
|
-
description: "Create a new task in ClickUp. Supports direct name-based lookup for lists - no need to know the list ID.
|
|
60
|
+
description: "Create a new task in ClickUp. Supports direct name-based lookup for lists - no need to know the list ID. Status will use ClickUp defaults if not specified. If the specified list doesn't exist, you can create it using create_list or create_list_in_folder.",
|
|
61
61
|
inputSchema: {
|
|
62
62
|
type: "object",
|
|
63
63
|
properties: {
|
|
@@ -71,7 +71,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
71
71
|
},
|
|
72
72
|
name: {
|
|
73
73
|
type: "string",
|
|
74
|
-
description: "Name of the task"
|
|
74
|
+
description: "Name of the task. Put a relevant emoji followed by a blank space before the name."
|
|
75
75
|
},
|
|
76
76
|
description: {
|
|
77
77
|
type: "string",
|
|
@@ -87,7 +87,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
87
87
|
},
|
|
88
88
|
priority: {
|
|
89
89
|
type: "number",
|
|
90
|
-
description: "Priority of the task (1-4), 1 is highest priority, 4 is lowest priority.
|
|
90
|
+
description: "Priority of the task (1-4), 1 is urgent/highest priority, 4 is lowest priority. Only set this if priority is explicitly mentioned in the user's request."
|
|
91
91
|
},
|
|
92
92
|
dueDate: {
|
|
93
93
|
type: "string",
|
|
@@ -99,7 +99,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
101
|
name: "create_bulk_tasks",
|
|
102
|
-
description: "Create multiple tasks in a ClickUp list. Supports direct name-based lookup for lists - no need to know the list ID.
|
|
102
|
+
description: "Create multiple tasks in a ClickUp list. Supports direct name-based lookup for lists - no need to know the list ID. Tasks will use ClickUp default status if not specified. If the specified list doesn't exist, you can create it using create_list or create_list_in_folder.",
|
|
103
103
|
inputSchema: {
|
|
104
104
|
type: "object",
|
|
105
105
|
properties: {
|
|
@@ -135,7 +135,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
135
135
|
},
|
|
136
136
|
priority: {
|
|
137
137
|
type: "number",
|
|
138
|
-
description: "Priority level (1-4), 1 is highest priority, 4 is lowest priority"
|
|
138
|
+
description: "Priority level (1-4), 1 is urgent/highest priority, 4 is lowest priority. Only set this if priority is explicitly mentioned in the user's request."
|
|
139
139
|
},
|
|
140
140
|
dueDate: {
|
|
141
141
|
type: "string",
|
|
@@ -184,7 +184,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
184
184
|
},
|
|
185
185
|
priority: {
|
|
186
186
|
type: "number",
|
|
187
|
-
description: "Priority of the list (1-4)"
|
|
187
|
+
description: "Priority of the list (1-4). Only set this if priority is explicitly mentioned in the user's request."
|
|
188
188
|
},
|
|
189
189
|
assignee: {
|
|
190
190
|
type: "number",
|
|
@@ -354,7 +354,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
354
354
|
},
|
|
355
355
|
priority: {
|
|
356
356
|
type: "number",
|
|
357
|
-
description: "New priority of the task (1-4)"
|
|
357
|
+
description: "New priority of the task (1-4). Only set this if priority is explicitly mentioned in the user's request."
|
|
358
358
|
},
|
|
359
359
|
dueDate: {
|
|
360
360
|
type: "string",
|
package/package.json
CHANGED