@taazkareem/clickup-mcp-server 0.4.71 โ†’ 0.4.73

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 CHANGED
@@ -27,6 +27,7 @@ The server is hosted on Smithery. There, you can preview the available tools or
27
27
 
28
28
  Add this entry to your client's MCP settings JSON file:
29
29
 
30
+ ```json
30
31
  {
31
32
  "mcpServers": {
32
33
  "ClickUp": {
@@ -42,18 +43,20 @@ Add this entry to your client's MCP settings JSON file:
42
43
  }
43
44
  }
44
45
  }
46
+ ```
45
47
 
46
- -OR- Use this npx command:
48
+ Or use this npx command:
47
49
 
48
- `npx -y @taazkareem/clickup-mcp-server@latest`
50
+ `npx -y @taazkareem/clickup-mcp-server@latest --env CLICKUP_API_KEY=your-api-key --env CLICKUP_TEAM_ID=your-team-id`
49
51
 
50
52
  ## Features
51
53
 
52
54
  - ๐ŸŽฏ **Task Management**
53
55
  - Create, update, and delete individual tasks
54
56
  - Move and duplicate tasks between lists, spaces, and folders
55
- - Create, update, move,and delete multiple tasks in bulk
57
+ - Create, update, move, and delete multiple tasks in bulk
56
58
  - View and modify task details and properties
59
+ - Get task comments
57
60
  - Set due dates using natural language and relative time expressions
58
61
 
59
62
  - ๐Ÿ“‚ **Workspace Organization**
@@ -116,13 +119,10 @@ The server provides clear error messages for:
116
119
  - API errors
117
120
  - Rate limiting
118
121
 
119
- ## Sponsor Message
120
-
121
- When using this server, you may occasionally see a small sponsor message with a link to this repository included in tool responses. I hope you can support the project!
122
-
123
122
  ## Support the Developer
124
123
 
125
- If you find this project useful, please consider supporting
124
+ When using this server, you may occasionally see a small sponsor message with a link to this repository included in tool responses. I hope you can support the project!
125
+ If you find this project useful, please consider supporting:
126
126
 
127
127
  [![Sponsor TaazKareem](https://img.shields.io/badge/Sponsor-TaazKareem-orange?logo=github)](https://github.com/sponsors/TaazKareem)
128
128
 
package/build/config.js CHANGED
@@ -22,7 +22,7 @@ for (let i = 0; i < args.length; i++) {
22
22
  const configuration = {
23
23
  clickupApiKey: envArgs.clickupApiKey || process.env.CLICKUP_API_KEY || '',
24
24
  clickupTeamId: envArgs.clickupTeamId || process.env.CLICKUP_TEAM_ID || '',
25
- enableSponsorMessage: process.env.ENABLE_SPONSOR_MESSAGE === 'true' || false,
25
+ enableSponsorMessage: process.env.ENABLE_SPONSOR_MESSAGE !== 'false',
26
26
  sponsorUrl: process.env.SPONSOR_URL || 'https://github.com/sponsors/taazkareem'
27
27
  };
28
28
  // Validate only the required variables are present
package/build/server.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Server } from "@modelcontextprotocol/sdk/server/index.js";
2
2
  import { CallToolRequestSchema, ListToolsRequestSchema, ListPromptsRequestSchema, GetPromptRequestSchema, } from "@modelcontextprotocol/sdk/types.js";
3
3
  import { workspaceHierarchyTool, handleGetWorkspaceHierarchy } from "./tools/workspace.js";
4
- import { createTaskTool, handleCreateTask, updateTaskTool, handleUpdateTask, moveTaskTool, handleMoveTask, duplicateTaskTool, handleDuplicateTask, getTaskTool, getTasksTool, handleGetTasks, deleteTaskTool, handleDeleteTask, getTaskCommentsTool, handleGetTaskComments, createBulkTasksTool, handleCreateBulkTasks, updateBulkTasksTool, handleUpdateBulkTasks, moveBulkTasksTool, handleMoveBulkTasks, deleteBulkTasksTool, handleDeleteBulkTasks } from "./tools/task.js";
4
+ import { createTaskTool, updateTaskTool, moveTaskTool, duplicateTaskTool, getTaskTool, getTasksTool, deleteTaskTool, getTaskCommentsTool, createBulkTasksTool, updateBulkTasksTool, moveBulkTasksTool, deleteBulkTasksTool, handleCreateTask, handleUpdateTask, handleMoveTask, handleDuplicateTask, handleGetTasks, handleDeleteTask, handleGetTaskComments, handleCreateBulkTasks, handleUpdateBulkTasks, handleMoveBulkTasks, handleDeleteBulkTasks, handleGetTask } from "./tools/task/index.js";
5
5
  import { createListTool, handleCreateList, createListInFolderTool, handleCreateListInFolder, getListTool, handleGetList, updateListTool, handleUpdateList, deleteListTool, handleDeleteList } from "./tools/list.js";
6
6
  import { createFolderTool, handleCreateFolder, getFolderTool, handleGetFolder, updateFolderTool, handleUpdateFolder, deleteFolderTool, handleDeleteFolder } from "./tools/folder.js";
7
7
  import { Logger } from "./logger.js";
@@ -15,7 +15,7 @@ const { workspace } = clickUpServices;
15
15
  */
16
16
  export const server = new Server({
17
17
  name: "clickup-mcp-server",
18
- version: "0.4.61",
18
+ version: "0.4.72",
19
19
  }, {
20
20
  capabilities: {
21
21
  tools: {},
@@ -82,7 +82,7 @@ export function configureServer() {
82
82
  case "duplicate_task":
83
83
  return handleDuplicateTask(params);
84
84
  case "get_task":
85
- return getTaskTool.handler(params);
85
+ return handleGetTask(params);
86
86
  case "get_tasks":
87
87
  return handleGetTasks(params);
88
88
  case "delete_task":
package/build/server.log CHANGED
@@ -1,47 +1,51 @@
1
- [2025-03-20T01:04:01.194Z] [PID:58193] INFO: [SharedServices] Creating shared ClickUp services singleton
2
- [2025-03-20T01:04:01.195Z] [PID:58193] INFO: [ClickUpServices] Starting ClickUp services initialization
1
+ [2025-03-20T22:24:30.145Z] [PID:2727] INFO: [SponsorService] SponsorService initialized
2
+ {
3
+ "enabled": true
4
+ }
5
+ [2025-03-20T22:24:30.199Z] [PID:2727] INFO: [SharedServices] Creating shared ClickUp services singleton
6
+ [2025-03-20T22:24:30.202Z] [PID:2727] INFO: [ClickUpServices] Starting ClickUp services initialization
3
7
  {
4
8
  "teamId": "9014370478",
5
9
  "baseUrl": "https://api.clickup.com/api/v2"
6
10
  }
7
- [2025-03-20T01:04:01.195Z] [PID:58193] INFO: [ClickUpServices] Initializing ClickUp Workspace service
8
- [2025-03-20T01:04:01.197Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Initialized WorkspaceService
11
+ [2025-03-20T22:24:30.203Z] [PID:2727] INFO: [ClickUpServices] Initializing ClickUp Workspace service
12
+ [2025-03-20T22:24:30.208Z] [PID:2727] DEBUG: [ClickUp:WorkspaceService] Initialized WorkspaceService
9
13
  {
10
14
  "teamId": "9014370478",
11
15
  "baseUrl": "https://api.clickup.com/api/v2"
12
16
  }
13
- [2025-03-20T01:04:01.197Z] [PID:58193] INFO: [ClickUpServices] Initializing ClickUp Task service
14
- [2025-03-20T01:04:01.197Z] [PID:58193] DEBUG: [ClickUp:TaskService] Initialized TaskService
17
+ [2025-03-20T22:24:30.208Z] [PID:2727] INFO: [ClickUpServices] Initializing ClickUp Task service
18
+ [2025-03-20T22:24:30.224Z] [PID:2727] DEBUG: [ClickUp:TaskService] Initialized TaskService
15
19
  {
16
20
  "teamId": "9014370478",
17
21
  "baseUrl": "https://api.clickup.com/api/v2"
18
22
  }
19
- [2025-03-20T01:04:01.198Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: constructor
23
+ [2025-03-20T22:24:30.228Z] [PID:2727] INFO: [ClickUp:TaskService] Operation: constructor
20
24
  {
21
25
  "usingSharedWorkspaceService": true
22
26
  }
23
- [2025-03-20T01:04:01.198Z] [PID:58193] DEBUG: [ClickUp:ListService] Initialized ListService
27
+ [2025-03-20T22:24:30.236Z] [PID:2727] DEBUG: [ClickUp:ListService] Initialized ListService
24
28
  {
25
29
  "teamId": "9014370478",
26
30
  "baseUrl": "https://api.clickup.com/api/v2"
27
31
  }
28
- [2025-03-20T01:04:01.198Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: constructor
32
+ [2025-03-20T22:24:30.237Z] [PID:2727] INFO: [ClickUp:TaskService] Operation: constructor
29
33
  {
30
34
  "initialized": true
31
35
  }
32
- [2025-03-20T01:04:01.198Z] [PID:58193] INFO: [ClickUpServices] Initializing ClickUp List service
33
- [2025-03-20T01:04:01.199Z] [PID:58193] DEBUG: [ClickUp:ListService] Initialized ListService
36
+ [2025-03-20T22:24:30.238Z] [PID:2727] INFO: [ClickUpServices] Initializing ClickUp List service
37
+ [2025-03-20T22:24:30.241Z] [PID:2727] DEBUG: [ClickUp:ListService] Initialized ListService
34
38
  {
35
39
  "teamId": "9014370478",
36
40
  "baseUrl": "https://api.clickup.com/api/v2"
37
41
  }
38
- [2025-03-20T01:04:01.199Z] [PID:58193] INFO: [ClickUpServices] Initializing ClickUp Folder service
39
- [2025-03-20T01:04:01.199Z] [PID:58193] DEBUG: [ClickUp:FolderService] Initialized FolderService
42
+ [2025-03-20T22:24:30.242Z] [PID:2727] INFO: [ClickUpServices] Initializing ClickUp Folder service
43
+ [2025-03-20T22:24:30.246Z] [PID:2727] DEBUG: [ClickUp:FolderService] Initialized FolderService
40
44
  {
41
45
  "teamId": "9014370478",
42
46
  "baseUrl": "https://api.clickup.com/api/v2"
43
47
  }
44
- [2025-03-20T01:04:01.199Z] [PID:58193] INFO: [ClickUpServices] All ClickUp services initialized successfully
48
+ [2025-03-20T22:24:30.248Z] [PID:2727] INFO: [ClickUpServices] All ClickUp services initialized successfully
45
49
  {
46
50
  "services": [
47
51
  "workspace",
@@ -51,29 +55,30 @@
51
55
  ],
52
56
  "baseUrl": "https://api.clickup.com/api/v2"
53
57
  }
54
- [2025-03-20T01:04:01.199Z] [PID:58193] INFO: [SharedServices] Services initialization complete
58
+ [2025-03-20T22:24:30.248Z] [PID:2727] INFO: [SharedServices] Services initialization complete
55
59
  {
56
60
  "services": "workspace, task, list, folder",
57
61
  "teamId": "9014370478"
58
62
  }
59
- [2025-03-20T01:04:01.199Z] [PID:58193] INFO: [BulkService] BulkService initialized
60
- [2025-03-20T01:04:01.200Z] [PID:58193] INFO: Starting ClickUp MCP Server...
61
- [2025-03-20T01:04:01.585Z] [PID:58193] INFO: Server environment
63
+ [2025-03-20T22:24:30.250Z] [PID:2727] INFO: [BulkService] BulkService initialized
64
+ [2025-03-20T22:24:30.251Z] [PID:2727] INFO: [BulkService] BulkService initialized
65
+ [2025-03-20T22:24:30.253Z] [PID:2727] INFO: Starting ClickUp MCP Server...
66
+ [2025-03-20T22:24:30.724Z] [PID:2727] INFO: Server environment
62
67
  {
63
- "pid": 58193,
68
+ "pid": 2727,
64
69
  "node": "v23.5.0",
65
70
  "os": "darwin",
66
71
  "arch": "x64"
67
72
  }
68
- [2025-03-20T01:04:01.585Z] [PID:58193] INFO: Initializing workspace tools
69
- [2025-03-20T01:04:01.585Z] [PID:58193] INFO: [WorkspaceTool] Initializing workspace tool
70
- [2025-03-20T01:04:01.585Z] [PID:58193] INFO: [WorkspaceTool] Workspace tool initialized successfully
73
+ [2025-03-20T22:24:30.724Z] [PID:2727] INFO: Initializing workspace tools
74
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: [WorkspaceTool] Initializing workspace tool
75
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: [WorkspaceTool] Workspace tool initialized successfully
71
76
  {
72
77
  "serviceType": "WorkspaceService"
73
78
  }
74
- [2025-03-20T01:04:01.585Z] [PID:58193] INFO: Configuring server request handlers
75
- [2025-03-20T01:04:01.586Z] [PID:58193] INFO: [Server] Registering server request handlers
76
- [2025-03-20T01:04:01.586Z] [PID:58193] INFO: [Server] Registering tool handlers
79
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: Configuring server request handlers
80
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: [Server] Registering server request handlers
81
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: [Server] Registering tool handlers
77
82
  {
78
83
  "toolCount": 22,
79
84
  "categories": [
@@ -83,423 +88,7 @@
83
88
  "folder"
84
89
  ]
85
90
  }
86
- [2025-03-20T01:04:01.586Z] [PID:58193] INFO: Connecting to MCP stdio transport
87
- [2025-03-20T01:04:01.586Z] [PID:58193] INFO: Server startup complete - ready to handle requests
88
- [2025-03-20T01:04:01.600Z] [PID:58193] DEBUG: [Server] Received ListTools request
89
- [2025-03-20T01:04:41.138Z] [PID:58193] INFO: [Server] Received CallTool request for tool: create_bulk_tasks
90
- {
91
- "params": {
92
- "listId": "901408285531",
93
- "tasks": [
94
- {
95
- "name": "๐Ÿš€ Implement login functionality",
96
- "description": "Create the user login page and authentication flow",
97
- "priority": 1
98
- },
99
- {
100
- "name": "๐Ÿ“ฑ Add responsive design",
101
- "description": "Make sure the application works on mobile devices",
102
- "priority": 2
103
- }
104
- ]
105
- }
106
- }
107
- [2025-03-20T01:04:41.138Z] [PID:58193] INFO: [BulkService] Creating 2 tasks in list 901408285531
108
- {}
109
- [2025-03-20T01:04:41.139Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: validateListExists
110
- {
111
- "listId": "901408285531"
112
- }
113
- [2025-03-20T01:04:41.139Z] [PID:58193] INFO: [ClickUp:ListService] Operation: getList
114
- {
115
- "listId": "901408285531"
116
- }
117
- [2025-03-20T01:04:42.478Z] [PID:58193] DEBUG: [ClickUp:ListService] Request completed successfully in 1339ms
118
- [2025-03-20T01:04:42.478Z] [PID:58193] INFO: [ConcurrencyUtils] Starting batch processing of 2 items
119
- {
120
- "totalBatches": 1,
121
- "batchSize": 10,
122
- "concurrency": 3
123
- }
124
- [2025-03-20T01:04:42.478Z] [PID:58193] DEBUG: [ConcurrencyUtils] Processing batch 1/1
125
- {
126
- "batchSize": 2,
127
- "startIdx": 0,
128
- "endIdx": 2
129
- }
130
- [2025-03-20T01:04:42.479Z] [PID:58193] DEBUG: [BulkService] Creating task 1/2
131
- {
132
- "taskName": "๐Ÿš€ Implement login functionality"
133
- }
134
- [2025-03-20T01:04:42.479Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: createTask
135
- {
136
- "listId": "901408285531",
137
- "name": "๐Ÿš€ Implement login functionality",
138
- "description": "Create the user login page and authentication flow",
139
- "priority": 1
140
- }
141
- [2025-03-20T01:04:42.481Z] [PID:58193] DEBUG: [BulkService] Creating task 2/2
142
- {
143
- "taskName": "๐Ÿ“ฑ Add responsive design"
144
- }
145
- [2025-03-20T01:04:42.481Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: createTask
146
- {
147
- "listId": "901408285531",
148
- "name": "๐Ÿ“ฑ Add responsive design",
149
- "description": "Make sure the application works on mobile devices",
150
- "priority": 2
151
- }
152
- [2025-03-20T01:04:44.109Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 1630ms
153
- [2025-03-20T01:04:44.109Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 1628ms
154
- [2025-03-20T01:04:44.109Z] [PID:58193] INFO: [ConcurrencyUtils] Batch processing completed
155
- {
156
- "totalItems": 2,
157
- "successful": 2,
158
- "failed": 0
159
- }
160
- [2025-03-20T01:04:48.030Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_tasks
161
- {
162
- "params": {
163
- "listName": "Bulk Test List 1"
164
- }
165
- }
166
- [2025-03-20T01:04:48.301Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 270ms
167
- [2025-03-20T01:04:48.661Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 360ms
168
- [2025-03-20T01:04:49.044Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 383ms
169
- [2025-03-20T01:04:49.443Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 399ms
170
- [2025-03-20T01:04:49.443Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Found 2 folderless lists in space 90141365861
171
- [2025-03-20T01:04:49.443Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding 2 lists directly to space Talib's Space (90141365861)
172
- [2025-03-20T01:04:49.443Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Personal List (901403617613)
173
- [2025-03-20T01:04:49.443Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Work List (901403621899)
174
- [2025-03-20T01:04:49.896Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 453ms
175
- [2025-03-20T01:04:50.410Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 514ms
176
- [2025-03-20T01:04:50.801Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 391ms
177
- [2025-03-20T01:04:50.801Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Found 0 folderless lists in space 90141864154
178
- [2025-03-20T01:04:50.801Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding 0 lists directly to space Education (90141864154)
179
- [2025-03-20T01:04:51.195Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 394ms
180
- [2025-03-20T01:04:51.539Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 343ms
181
- [2025-03-20T01:04:51.539Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Found 1 folderless lists in space 90141369187
182
- [2025-03-20T01:04:51.539Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding 1 lists directly to space Social Media Content (90141369187)
183
- [2025-03-20T01:04:51.539Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: VibeCase (901403679582)
184
- [2025-03-20T01:04:51.997Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 458ms
185
- [2025-03-20T01:04:52.490Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 492ms
186
- [2025-03-20T01:04:52.885Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 395ms
187
- [2025-03-20T01:04:53.300Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 414ms
188
- [2025-03-20T01:04:53.664Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 364ms
189
- [2025-03-20T01:04:54.061Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 397ms
190
- [2025-03-20T01:04:54.492Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 431ms
191
- [2025-03-20T01:04:55.140Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 648ms
192
- [2025-03-20T01:04:55.537Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 397ms
193
- [2025-03-20T01:04:56.280Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 742ms
194
- [2025-03-20T01:04:56.280Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Found 9 folderless lists in space 90141392755
195
- [2025-03-20T01:04:56.280Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding 9 lists directly to space Custom Space (90141392755)
196
- [2025-03-20T01:04:56.280Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Job Applications (901404823810)
197
- [2025-03-20T01:04:56.280Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Prompts | Snippets | Commands (901407112060)
198
- [2025-03-20T01:04:56.280Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Style Scraper (901408105509)
199
- [2025-03-20T01:04:56.281Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: goal-tracker (901408127809)
200
- [2025-03-20T01:04:56.281Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Bulk Test List 1 (901408285531)
201
- [2025-03-20T01:04:56.281Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Bulk Test List 2 (901408285532)
202
- [2025-03-20T01:04:56.281Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: cursor-rules-mcp-server (901408144363)
203
- [2025-03-20T01:04:56.281Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Items to Sell Online (901404691843)
204
- [2025-03-20T01:04:56.281Z] [PID:58193] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: clickup-mcp-server (901408020907)
205
- [2025-03-20T01:04:56.281Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
206
- {
207
- "listId": "901408285531",
208
- "filters": {}
209
- }
210
- [2025-03-20T01:04:56.781Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 500ms
211
- [2025-03-20T01:05:02.618Z] [PID:58193] INFO: [Server] Received CallTool request for tool: update_bulk_tasks
212
- {
213
- "params": {
214
- "tasks": [
215
- {
216
- "taskId": "86b4b7r9z",
217
- "status": "in progress"
218
- },
219
- {
220
- "taskId": "86b4b7r9y",
221
- "status": "in progress",
222
- "priority": 2
223
- }
224
- ]
225
- }
226
- }
227
- [2025-03-20T01:05:02.618Z] [PID:58193] INFO: [BulkService] Updating 2 tasks
228
- {}
229
- [2025-03-20T01:05:02.619Z] [PID:58193] INFO: [ConcurrencyUtils] Starting batch processing of 2 items
230
- {
231
- "totalBatches": 1,
232
- "batchSize": 10,
233
- "concurrency": 3
234
- }
235
- [2025-03-20T01:05:02.619Z] [PID:58193] DEBUG: [ConcurrencyUtils] Processing batch 1/1
236
- {
237
- "batchSize": 2,
238
- "startIdx": 0,
239
- "endIdx": 2
240
- }
241
- [2025-03-20T01:05:02.619Z] [PID:58193] DEBUG: [BulkService] Updating task 1/2
242
- {
243
- "taskId": "86b4b7r9z"
244
- }
245
- [2025-03-20T01:05:02.619Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: updateTask
246
- {
247
- "taskId": "86b4b7r9z",
248
- "status": "in progress"
249
- }
250
- [2025-03-20T01:05:02.621Z] [PID:58193] DEBUG: [BulkService] Updating task 2/2
251
- {
252
- "taskId": "86b4b7r9y"
253
- }
254
- [2025-03-20T01:05:02.621Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: updateTask
255
- {
256
- "taskId": "86b4b7r9y",
257
- "status": "in progress",
258
- "priority": 2
259
- }
260
- [2025-03-20T01:05:03.503Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 884ms
261
- [2025-03-20T01:05:03.564Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 943ms
262
- [2025-03-20T01:05:03.564Z] [PID:58193] INFO: [ConcurrencyUtils] Batch processing completed
263
- {
264
- "totalItems": 2,
265
- "successful": 2,
266
- "failed": 0
267
- }
268
- [2025-03-20T01:05:12.430Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_tasks
269
- {
270
- "params": {
271
- "listName": "Bulk Test List 1"
272
- }
273
- }
274
- [2025-03-20T01:05:12.430Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
275
- {
276
- "listId": "901408285531",
277
- "filters": {}
278
- }
279
- [2025-03-20T01:05:13.878Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 1448ms
280
- [2025-03-20T01:05:18.865Z] [PID:58193] INFO: [Server] Received CallTool request for tool: move_bulk_tasks
281
- {
282
- "params": {
283
- "tasks": [
284
- {
285
- "taskId": "86b4b7r9z"
286
- },
287
- {
288
- "taskId": "86b4b7r9y"
289
- }
290
- ],
291
- "targetListName": "Bulk Test List 2"
292
- }
293
- }
294
- [2025-03-20T01:05:18.865Z] [PID:58193] INFO: [BulkService] Moving 2 tasks to list 901408285532
295
- {}
296
- [2025-03-20T01:05:18.865Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: validateListExists
297
- {
298
- "listId": "901408285532"
299
- }
300
- [2025-03-20T01:05:18.865Z] [PID:58193] INFO: [ClickUp:ListService] Operation: getList
301
- {
302
- "listId": "901408285532"
303
- }
304
- [2025-03-20T01:05:19.238Z] [PID:58193] DEBUG: [ClickUp:ListService] Request completed successfully in 373ms
305
- [2025-03-20T01:05:19.238Z] [PID:58193] INFO: [ConcurrencyUtils] Starting batch processing of 2 items
306
- {
307
- "totalBatches": 1,
308
- "batchSize": 10,
309
- "concurrency": 3
310
- }
311
- [2025-03-20T01:05:19.238Z] [PID:58193] DEBUG: [ConcurrencyUtils] Processing batch 1/1
312
- {
313
- "batchSize": 2,
314
- "startIdx": 0,
315
- "endIdx": 2
316
- }
317
- [2025-03-20T01:05:19.239Z] [PID:58193] DEBUG: [BulkService] Moving task 1/2
318
- {
319
- "taskId": "86b4b7r9z",
320
- "targetListId": "901408285532"
321
- }
322
- [2025-03-20T01:05:19.239Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: moveTask
323
- {
324
- "taskId": "86b4b7r9z",
325
- "destinationListId": "901408285532"
326
- }
327
- [2025-03-20T01:05:19.239Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTask
328
- {
329
- "taskId": "86b4b7r9z"
330
- }
331
- [2025-03-20T01:05:19.240Z] [PID:58193] INFO: [ClickUp:ListService] Operation: getList
332
- {
333
- "listId": "901408285532"
334
- }
335
- [2025-03-20T01:05:19.241Z] [PID:58193] DEBUG: [BulkService] Moving task 2/2
336
- {
337
- "taskId": "86b4b7r9y",
338
- "targetListId": "901408285532"
339
- }
340
- [2025-03-20T01:05:19.241Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: moveTask
341
- {
342
- "taskId": "86b4b7r9y",
343
- "destinationListId": "901408285532"
344
- }
345
- [2025-03-20T01:05:19.241Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTask
346
- {
347
- "taskId": "86b4b7r9y"
348
- }
349
- [2025-03-20T01:05:19.242Z] [PID:58193] INFO: [ClickUp:ListService] Operation: getList
350
- {
351
- "listId": "901408285532"
352
- }
353
- [2025-03-20T01:05:19.706Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 467ms
354
- [2025-03-20T01:05:19.712Z] [PID:58193] DEBUG: [ClickUp:ListService] Request completed successfully in 472ms
355
- [2025-03-20T01:05:19.742Z] [PID:58193] DEBUG: [ClickUp:ListService] Request completed successfully in 500ms
356
- [2025-03-20T01:05:19.777Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 536ms
357
- [2025-03-20T01:05:20.871Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 1094ms
358
- [2025-03-20T01:05:20.881Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 1168ms
359
- [2025-03-20T01:05:20.881Z] [PID:58193] INFO: [ConcurrencyUtils] Batch processing completed
360
- {
361
- "totalItems": 2,
362
- "successful": 2,
363
- "failed": 0
364
- }
365
- [2025-03-20T01:05:25.180Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_tasks
366
- {
367
- "params": {
368
- "listName": "Bulk Test List 2"
369
- }
370
- }
371
- [2025-03-20T01:05:25.181Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
372
- {
373
- "listId": "901408285532",
374
- "filters": {}
375
- }
376
- [2025-03-20T01:05:25.655Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 474ms
377
- [2025-03-20T01:05:29.978Z] [PID:58193] INFO: [Server] Received CallTool request for tool: delete_bulk_tasks
378
- {
379
- "params": {
380
- "tasks": [
381
- {
382
- "taskId": "86b4b7rn6"
383
- },
384
- {
385
- "taskId": "86b4b7rn5"
386
- }
387
- ]
388
- }
389
- }
390
- [2025-03-20T01:05:29.979Z] [PID:58193] INFO: [BulkService] Deleting 2 tasks
391
- {}
392
- [2025-03-20T01:05:29.979Z] [PID:58193] INFO: [ConcurrencyUtils] Starting batch processing of 2 items
393
- {
394
- "totalBatches": 1,
395
- "batchSize": 10,
396
- "concurrency": 3
397
- }
398
- [2025-03-20T01:05:29.979Z] [PID:58193] DEBUG: [ConcurrencyUtils] Processing batch 1/1
399
- {
400
- "batchSize": 2,
401
- "startIdx": 0,
402
- "endIdx": 2
403
- }
404
- [2025-03-20T01:05:29.979Z] [PID:58193] DEBUG: [BulkService] Deleting task 1/2
405
- {
406
- "taskId": "86b4b7rn6"
407
- }
408
- [2025-03-20T01:05:29.979Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: deleteTask
409
- {
410
- "taskId": "86b4b7rn6"
411
- }
412
- [2025-03-20T01:05:29.980Z] [PID:58193] DEBUG: [BulkService] Deleting task 2/2
413
- {
414
- "taskId": "86b4b7rn5"
415
- }
416
- [2025-03-20T01:05:29.980Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: deleteTask
417
- {
418
- "taskId": "86b4b7rn5"
419
- }
420
- [2025-03-20T01:05:30.479Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 500ms
421
- [2025-03-20T01:05:30.501Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 521ms
422
- [2025-03-20T01:05:30.501Z] [PID:58193] INFO: [ConcurrencyUtils] Batch processing completed
423
- {
424
- "totalItems": 2,
425
- "successful": 2,
426
- "failed": 0
427
- }
428
- [2025-03-20T01:05:34.452Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_tasks
429
- {
430
- "params": {
431
- "listName": "Bulk Test List 2"
432
- }
433
- }
434
- [2025-03-20T01:05:34.452Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
435
- {
436
- "listId": "901408285532",
437
- "filters": {}
438
- }
439
- [2025-03-20T01:05:34.984Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 532ms
440
- [2025-03-20T01:25:20.761Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_tasks
441
- {
442
- "params": {
443
- "listName": "Bulk Test List 1"
444
- }
445
- }
446
- [2025-03-20T01:25:20.761Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
447
- {
448
- "listId": "901408285531",
449
- "filters": {}
450
- }
451
- [2025-03-20T01:25:21.481Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 720ms
452
- [2025-03-20T01:25:25.376Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_task_comments
453
- {
454
- "params": {
455
- "taskId": "86b4b7crr"
456
- }
457
- }
458
- [2025-03-20T01:25:25.377Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTaskComments
459
- {
460
- "taskId": "86b4b7crr"
461
- }
462
- [2025-03-20T01:26:15.618Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_tasks
463
- {
464
- "params": {
465
- "listName": "clickup-mcp-server"
466
- }
467
- }
468
- [2025-03-20T01:26:15.618Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
469
- {
470
- "listId": "901407953112",
471
- "filters": {}
472
- }
473
- [2025-03-20T01:26:17.074Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 1456ms
474
- [2025-03-20T01:26:21.470Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_task_comments
475
- {
476
- "params": {
477
- "taskId": "86b4a5aqd"
478
- }
479
- }
480
- [2025-03-20T01:26:21.470Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTaskComments
481
- {
482
- "taskId": "86b4a5aqd"
483
- }
484
- [2025-03-20T01:26:27.261Z] [PID:58193] INFO: [Server] Received CallTool request for tool: get_task_comments
485
- {
486
- "params": {
487
- "taskName": "๐Ÿงช Test Comments Task",
488
- "listName": "clickup-mcp-server"
489
- }
490
- }
491
- [2025-03-20T01:26:27.261Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: findTaskByName
492
- {
493
- "listId": "901407953112",
494
- "taskName": "๐Ÿงช Test Comments Task"
495
- }
496
- [2025-03-20T01:26:27.261Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTasks
497
- {
498
- "listId": "901407953112",
499
- "filters": {}
500
- }
501
- [2025-03-20T01:26:27.949Z] [PID:58193] DEBUG: [ClickUp:TaskService] Request completed successfully in 687ms
502
- [2025-03-20T01:26:27.950Z] [PID:58193] INFO: [ClickUp:TaskService] Operation: getTaskComments
503
- {
504
- "taskId": "86b4a5aqd"
505
- }
91
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: Connecting to MCP stdio transport
92
+ [2025-03-20T22:24:30.725Z] [PID:2727] INFO: Server startup complete - ready to handle requests
93
+ [2025-03-20T22:24:37.060Z] [PID:2727] DEBUG: [Server] Received ListTools request
94
+ [2025-03-20T22:24:37.063Z] [PID:2727] DEBUG: [Server] Received ListTools request