@taazkareem/clickup-mcp-server 0.2.2 → 0.2.4
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 +27 -59
- package/build/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,9 @@ Directions for use with Cursor Composer Agent:
|
|
|
12
12
|
2. Go to Features in settings
|
|
13
13
|
3. Add under MCP Servers:
|
|
14
14
|
```bash
|
|
15
|
-
npx -y @taazkareem/clickup-mcp-server
|
|
15
|
+
npx -y @taazkareem/clickup-mcp-server \
|
|
16
|
+
--env CLICKUP_API_KEY=your_api_key_here \
|
|
17
|
+
--env CLICKUP_TEAM_ID=your_team_id_here
|
|
16
18
|
```
|
|
17
19
|
4. Replace the credentials and click Save
|
|
18
20
|
5. Use Natural Language to interact with your ClickUp Workspace!
|
|
@@ -31,7 +33,7 @@ npx -y @taazkareem/clickup-mcp-server --env CLICKUP_API_KEY=your_api_key_here --
|
|
|
31
33
|
- List and folder management in spaces
|
|
32
34
|
- Smart caching to reduce API calls
|
|
33
35
|
- Name/ID-based item lookup
|
|
34
|
-
|
|
36
|
+
|
|
35
37
|
|
|
36
38
|
- 🔄 **Smart Integration**
|
|
37
39
|
- Case-insensitive name lookups
|
|
@@ -47,61 +49,30 @@ npx -y @taazkareem/clickup-mcp-server --env CLICKUP_API_KEY=your_api_key_here --
|
|
|
47
49
|
|
|
48
50
|
## Available Tools
|
|
49
51
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
**update_task** `(taskId|taskName, ?listName)`
|
|
68
|
-
Update task name, description, status, priority (1-4), dueDate.
|
|
69
|
-
|
|
70
|
-
**delete_task** `(taskId|taskName, ?listName)`
|
|
71
|
-
Permanently delete a task.
|
|
72
|
-
|
|
73
|
-
**move_task** `(taskId|taskName, destinationListId|destinationListName, ?sourceListName)`
|
|
74
|
-
Move task to different list, preserving task data.
|
|
75
|
-
|
|
76
|
-
**duplicate_task** `(taskId|taskName, destinationListId|destinationListName, ?sourceListName)`
|
|
77
|
-
Create copy of task in specified list.
|
|
78
|
-
|
|
79
|
-
### List & Folder Tools
|
|
80
|
-
**create_list** `(spaceId|spaceName, listName)`
|
|
81
|
-
Create list with optional content, dueDate, priority (1-4), assignee.
|
|
82
|
-
|
|
83
|
-
**create_folder** `(spaceId|spaceName, folderName, ?overrideStatuses)`
|
|
84
|
-
Create folder in space.
|
|
85
|
-
|
|
86
|
-
**create_list_in_folder** `(folderId|folderName, listName)`
|
|
87
|
-
Create list in folder with optional content and status.
|
|
52
|
+
| Tool | Description | Required Parameters |
|
|
53
|
+
|------|-------------|-------------------|
|
|
54
|
+
| [get_workspace_hierarchy](docs/tools.md#workspace-organization) | Get complete workspace structure | None |
|
|
55
|
+
| [get_tasks](docs/tools.md#task-management) | Retrieve tasks from a list | `listId` or `listName` |
|
|
56
|
+
| [get_task](docs/tools.md#task-management) | Get single task details | `taskId` or `taskName` |
|
|
57
|
+
| [create_task](docs/tools.md#task-management) | Create a new task | `listId`, `taskName` |
|
|
58
|
+
| [create_bulk_tasks](docs/tools.md#task-management) | Create multiple tasks | `listId`, `tasks[]` |
|
|
59
|
+
| [update_task](docs/tools.md#task-management) | Modify task properties | `taskId` or `taskName` |
|
|
60
|
+
| [delete_task](docs/tools.md#task-management) | Remove a task | `taskId` or `taskName` |
|
|
61
|
+
| [move_task](docs/tools.md#task-management) | Move task to another list | `taskId`, `destinationListId` |
|
|
62
|
+
| [duplicate_task](docs/tools.md#task-management) | Copy task to another list | `taskId`, `destinationListId` |
|
|
63
|
+
| [create_list](docs/tools.md#list-management) | Create a new list | `spaceId`, `listName` |
|
|
64
|
+
| [create_folder](docs/tools.md#folder-management) | Create a new folder | `spaceId`, `folderName` |
|
|
65
|
+
| [create_list_in_folder](docs/tools.md#list-management) | Create list in folder | `folderId`, `listName` |
|
|
66
|
+
|
|
67
|
+
See [full documentation](docs/tools.md) for optional parameters and advanced usage.
|
|
88
68
|
|
|
89
69
|
## Available Prompts
|
|
90
70
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
2. **analyze_priorities**
|
|
97
|
-
- Reviews current task priorities
|
|
98
|
-
- Suggests priority adjustments
|
|
99
|
-
- Recommends task sequencing
|
|
100
|
-
|
|
101
|
-
3. **generate_description**
|
|
102
|
-
- Interactive prompt for creating task descriptions
|
|
103
|
-
- Helps structure task information
|
|
104
|
-
- Includes objectives, criteria, and dependencies
|
|
71
|
+
| Prompt | Purpose | Features |
|
|
72
|
+
|--------|---------|----------|
|
|
73
|
+
| [summarize_tasks](docs/tools.md#prompts) | Generate task overview | Status summary, relationships, current states |
|
|
74
|
+
| [analyze_priorities](docs/tools.md#prompts) | Review task priorities | Priority review, adjustments, sequencing |
|
|
75
|
+
| [generate_description](docs/tools.md#prompts) | Create task descriptions | Structure, objectives, dependencies |
|
|
105
76
|
|
|
106
77
|
## Error Handling
|
|
107
78
|
|
|
@@ -115,12 +86,9 @@ The server provides clear error messages for:
|
|
|
115
86
|
|
|
116
87
|
## Support the Developer
|
|
117
88
|
|
|
118
|
-
If you find this project useful, please consider supporting
|
|
119
|
-
Talib Kareem (taazkareem@icloud.com)
|
|
120
|
-
|
|
121
|
-
[](https://www.buymeacoffee.com/taazkareem)
|
|
89
|
+
If you find this project useful, please consider supporting
|
|
122
90
|
|
|
123
|
-
|
|
91
|
+
[](https://github.com/sponsors/TaazKareem)
|
|
124
92
|
|
|
125
93
|
## Contributing
|
|
126
94
|
|
package/build/index.js
CHANGED
|
@@ -48,7 +48,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
48
48
|
tools: [
|
|
49
49
|
{
|
|
50
50
|
name: "get_workspace_hierarchy",
|
|
51
|
-
description: "Get the complete hierarchy of spaces, folders, and lists in the workspace.
|
|
51
|
+
description: "Get the complete hierarchy of spaces, folders, and lists in the workspace. Important: If looking up information, first check chat history for space, folder, and list names or ID matches. If not found, use this tool to get necessary information.",
|
|
52
52
|
inputSchema: {
|
|
53
53
|
type: "object",
|
|
54
54
|
properties: {},
|
|
@@ -366,7 +366,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
name: "get_tasks",
|
|
369
|
-
description: "Get tasks from a ClickUp list with optional filters. Supports direct name-based lookup for lists - no need to know the list ID. If the list doesn't exist, you can create it using create_list or create_list_in_folder.",
|
|
369
|
+
description: "Get tasks from a ClickUp list with optional filters. Supports direct name-based lookup for lists - no need to know the list ID. If the list doesn't exist, you can create it using create_list or create_list_in_folder. ",
|
|
370
370
|
inputSchema: {
|
|
371
371
|
type: "object",
|
|
372
372
|
properties: {
|
package/package.json
CHANGED