@taazkareem/clickup-mcp-server 0.4.70 → 0.4.72

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
@@ -9,37 +9,54 @@ A Model Context Protocol (MCP) server for integrating ClickUp tasks with AI appl
9
9
  <img width="380" height="200" src="https://glama.ai/mcp/servers/iwjvs2zy63/badge" alt="ClickUp Server MCP server" />
10
10
  </a>
11
11
 
12
- ## Quick Start
13
-
14
- Directions for use with Cursor Composer Agent:
12
+ ## Setup
15
13
 
16
14
  1. Get your credentials:
17
15
  - ClickUp API key from [ClickUp Settings](https://app.clickup.com/settings/apps)
18
16
  - Team ID from your ClickUp workspace URL
19
- 2. Go to Features in settings (or MCP Servers depending on version)
20
- 3. Add under MCP Servers:
21
- ```bash
22
- npx -y @taazkareem/clickup-mcp-server@latest \
23
- --env CLICKUP_API_KEY=your_api_key_here \
24
- --env CLICKUP_TEAM_ID=your_team_id_here
25
- ```
26
- 4. Replace the credentials and click Save
27
- 5. Use Natural Language to interact with your ClickUp Workspace!
17
+ 2. Choose either hosted installation (sends webhooks) or NPX installation (downloads to local path and installs dependencies)
28
18
 
29
-
30
- ## Smithery Installation
19
+ ## Smithery Installation (Quick Start)
31
20
 
32
21
  [![smithery badge](https://smithery.ai/badge/@TaazKareem/clickup-mcp-server)](https://smithery.ai/server/@TaazKareem/clickup-mcp-server)
33
22
 
34
- The server is also hosted on Smithery. There, you can preview the available tools or copy the commands to run on your specific client app.
23
+ The server is hosted on Smithery. There, you can preview the available tools or copy the commands to run on your specific client app.
24
+
25
+
26
+ ## NPX Installation
27
+
28
+ Add this entry to your client's MCP settings JSON file:
29
+
30
+ ```json
31
+ {
32
+ "mcpServers": {
33
+ "ClickUp": {
34
+ "command": "npx",
35
+ "args": [
36
+ "-y",
37
+ "@taazkareem/clickup-mcp-server@latest"
38
+ ],
39
+ "env": {
40
+ "CLICKUP_API_KEY": "your-api-key",
41
+ "CLICKUP_TEAM_ID": "your-team-id"
42
+ }
43
+ }
44
+ }
45
+ }
46
+ ```
47
+
48
+ Or use this npx command:
49
+
50
+ `npx -y @taazkareem/clickup-mcp-server@latest --env CLICKUP_API_KEY=your-api-key --env CLICKUP_TEAM_ID=your-team-id`
35
51
 
36
52
  ## Features
37
53
 
38
54
  - 🎯 **Task Management**
39
55
  - Create, update, and delete individual tasks
40
56
  - Move and duplicate tasks between lists, spaces, and folders
41
- - Create, update, move,and delete multiple tasks in bulk
57
+ - Create, update, move, and delete multiple tasks in bulk
42
58
  - View and modify task details and properties
59
+ - Get task comments
43
60
  - Set due dates using natural language and relative time expressions
44
61
 
45
62
  - 📂 **Workspace Organization**
@@ -104,7 +121,8 @@ The server provides clear error messages for:
104
121
 
105
122
  ## Support the Developer
106
123
 
107
- 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:
108
126
 
109
127
  [![Sponsor TaazKareem](https://img.shields.io/badge/Sponsor-TaazKareem-orange?logo=github)](https://github.com/sponsors/TaazKareem)
110
128
 
@@ -123,4 +141,3 @@ or brands owned by third parties. The use of such APIs or references does not im
123
141
  any affiliation with or endorsement by the respective companies. All trademarks and
124
142
  brand names are the property of their respective owners. This project is an independent
125
143
  work and is not officially associated with or sponsored by any third-party company mentioned.
126
-
package/build/config.js CHANGED
@@ -22,11 +22,14 @@ 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,
26
+ sponsorUrl: process.env.SPONSOR_URL || 'https://github.com/sponsors/taazkareem'
25
27
  };
26
- // Validate all required variables are present
27
- const missingEnvVars = Object.entries(configuration)
28
- .filter(([_, value]) => !value)
29
- .map(([key]) => key);
28
+ // Validate only the required variables are present
29
+ const requiredVars = ['clickupApiKey', 'clickupTeamId'];
30
+ const missingEnvVars = requiredVars
31
+ .filter(key => !configuration[key])
32
+ .map(key => key);
30
33
  if (missingEnvVars.length > 0) {
31
34
  throw new Error(`Missing required environment variables: ${missingEnvVars.join(', ')}`);
32
35
  }
package/build/index.js CHANGED
@@ -10,7 +10,7 @@
10
10
  * Task Management:
11
11
  * - Create, update, move and duplicate tasks with rich description support
12
12
  * - Find tasks by name with smart disambiguation
13
- * - Bulk task creation for efficient workflow setup
13
+ * - Optimized bulk task operations with concurrent processing
14
14
  * - Comprehensive filtering and sorting options
15
15
  *
16
16
  * Workspace Organization:
@@ -0,0 +1,64 @@
1
+ import { Logger } from "./logger.js";
2
+ // Create a logger instance
3
+ const logger = new Logger('MCPTools');
4
+ /**
5
+ * Register a handler for a tool that may receive JSON string parameters
6
+ * This wrapper ensures that array and object parameters are properly parsed
7
+ *
8
+ * @param server MCP Server instance
9
+ * @param name Tool name
10
+ * @param handler Handler function
11
+ */
12
+ export function registerToolHandler(server, name, handler) {
13
+ // Create a wrapper handler that pre-processes parameters
14
+ const wrappedHandler = async (params) => {
15
+ logger.debug(`Processing parameters for tool ${name}`, { params });
16
+ try {
17
+ // Process the parameters before passing them to the actual handler
18
+ const processedParams = {};
19
+ // Process each parameter - try to parse strings that might be JSON
20
+ for (const [key, value] of Object.entries(params)) {
21
+ if (typeof value === 'string') {
22
+ try {
23
+ // Check if this might be a JSON array or object
24
+ if ((value.startsWith('[') && value.endsWith(']')) ||
25
+ (value.startsWith('{') && value.endsWith('}'))) {
26
+ try {
27
+ processedParams[key] = JSON.parse(value);
28
+ logger.debug(`Parsed JSON parameter: ${key}`, { original: value, parsed: processedParams[key] });
29
+ }
30
+ catch (parseError) {
31
+ // If parsing fails, use the original string
32
+ processedParams[key] = value;
33
+ logger.debug(`Failed to parse JSON for parameter: ${key}, using original`, { error: parseError.message });
34
+ }
35
+ }
36
+ else {
37
+ processedParams[key] = value;
38
+ }
39
+ }
40
+ catch (error) {
41
+ // If there's any error, use the original value
42
+ processedParams[key] = value;
43
+ logger.debug(`Error processing parameter: ${key}`, { error: error.message });
44
+ }
45
+ }
46
+ else {
47
+ // Non-string values are used as-is
48
+ processedParams[key] = value;
49
+ }
50
+ }
51
+ logger.debug(`Processed parameters for tool ${name}`, { processedParams });
52
+ // Call the original handler with processed parameters
53
+ return handler(processedParams);
54
+ }
55
+ catch (error) {
56
+ logger.error(`Error in wrapped handler for tool ${name}:`, { error: error.stack || error.message });
57
+ throw error;
58
+ }
59
+ };
60
+ // Use setRequestHandler to register the wrapped handler
61
+ logger.info(`Registering wrapped handler for tool: ${name}`);
62
+ // Override the tool's handler in the CallTool switch statement
63
+ // The server.ts file will use the switch case to call this handler
64
+ }
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, createBulkTasksTool, handleCreateBulkTasks, updateBulkTasksTool, handleUpdateBulkTasks, moveBulkTasksTool, handleMoveBulkTasks, deleteBulkTasksTool, handleDeleteBulkTasks, getTaskCommentsTool, handleGetTaskComments } from "./tools/task.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";
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";
@@ -40,11 +40,11 @@ export function configureServer() {
40
40
  moveTaskTool,
41
41
  duplicateTaskTool,
42
42
  deleteTaskTool,
43
+ getTaskCommentsTool,
43
44
  createBulkTasksTool,
44
45
  updateBulkTasksTool,
45
46
  moveBulkTasksTool,
46
47
  deleteBulkTasksTool,
47
- getTaskCommentsTool,
48
48
  createListTool,
49
49
  createListInFolderTool,
50
50
  getListTool,
@@ -87,6 +87,8 @@ export function configureServer() {
87
87
  return handleGetTasks(params);
88
88
  case "delete_task":
89
89
  return handleDeleteTask(params);
90
+ case "get_task_comments":
91
+ return handleGetTaskComments(params);
90
92
  case "create_bulk_tasks":
91
93
  return handleCreateBulkTasks(params);
92
94
  case "update_bulk_tasks":
@@ -95,8 +97,6 @@ export function configureServer() {
95
97
  return handleMoveBulkTasks(params);
96
98
  case "delete_bulk_tasks":
97
99
  return handleDeleteBulkTasks(params);
98
- case "get_task_comments":
99
- return handleGetTaskComments(params);
100
100
  case "create_list":
101
101
  return handleCreateList(params);
102
102
  case "create_list_in_folder":
package/build/server.log CHANGED
@@ -1,39 +1,47 @@
1
- [2025-03-18T04:13:46.822Z] [PID:60411] INFO: [SharedServices] Creating shared ClickUp services singleton
2
- [2025-03-18T04:13:46.823Z] [PID:60411] INFO: [ClickUpServices] Starting ClickUp services initialization
1
+ [2025-03-20T03:57:08.094Z] [PID:69773] INFO: [SharedServices] Creating shared ClickUp services singleton
2
+ [2025-03-20T03:57:08.097Z] [PID:69773] INFO: [ClickUpServices] Starting ClickUp services initialization
3
3
  {
4
4
  "teamId": "9014370478",
5
5
  "baseUrl": "https://api.clickup.com/api/v2"
6
6
  }
7
- [2025-03-18T04:13:46.824Z] [PID:60411] INFO: [ClickUpServices] Initializing ClickUp Workspace service
8
- [2025-03-18T04:13:46.825Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Initialized WorkspaceService
7
+ [2025-03-20T03:57:08.098Z] [PID:69773] INFO: [ClickUpServices] Initializing ClickUp Workspace service
8
+ [2025-03-20T03:57:08.099Z] [PID:69773] DEBUG: [ClickUp:WorkspaceService] Initialized WorkspaceService
9
9
  {
10
10
  "teamId": "9014370478",
11
11
  "baseUrl": "https://api.clickup.com/api/v2"
12
12
  }
13
- [2025-03-18T04:13:46.825Z] [PID:60411] INFO: [ClickUpServices] Initializing ClickUp Task service
14
- [2025-03-18T04:13:46.826Z] [PID:60411] DEBUG: [ClickUp:TaskService] Initialized TaskService
13
+ [2025-03-20T03:57:08.100Z] [PID:69773] INFO: [ClickUpServices] Initializing ClickUp Task service
14
+ [2025-03-20T03:57:08.100Z] [PID:69773] DEBUG: [ClickUp:TaskService] Initialized TaskService
15
15
  {
16
16
  "teamId": "9014370478",
17
17
  "baseUrl": "https://api.clickup.com/api/v2"
18
18
  }
19
- [2025-03-18T04:13:46.826Z] [PID:60411] DEBUG: [ClickUp:ListService] Initialized ListService
19
+ [2025-03-20T03:57:08.100Z] [PID:69773] INFO: [ClickUp:TaskService] Operation: constructor
20
+ {
21
+ "usingSharedWorkspaceService": true
22
+ }
23
+ [2025-03-20T03:57:08.101Z] [PID:69773] DEBUG: [ClickUp:ListService] Initialized ListService
20
24
  {
21
25
  "teamId": "9014370478",
22
26
  "baseUrl": "https://api.clickup.com/api/v2"
23
27
  }
24
- [2025-03-18T04:13:46.826Z] [PID:60411] INFO: [ClickUpServices] Initializing ClickUp List service
25
- [2025-03-18T04:13:46.827Z] [PID:60411] DEBUG: [ClickUp:ListService] Initialized ListService
28
+ [2025-03-20T03:57:08.101Z] [PID:69773] INFO: [ClickUp:TaskService] Operation: constructor
29
+ {
30
+ "initialized": true
31
+ }
32
+ [2025-03-20T03:57:08.101Z] [PID:69773] INFO: [ClickUpServices] Initializing ClickUp List service
33
+ [2025-03-20T03:57:08.101Z] [PID:69773] DEBUG: [ClickUp:ListService] Initialized ListService
26
34
  {
27
35
  "teamId": "9014370478",
28
36
  "baseUrl": "https://api.clickup.com/api/v2"
29
37
  }
30
- [2025-03-18T04:13:46.827Z] [PID:60411] INFO: [ClickUpServices] Initializing ClickUp Folder service
31
- [2025-03-18T04:13:46.827Z] [PID:60411] DEBUG: [ClickUp:FolderService] Initialized FolderService
38
+ [2025-03-20T03:57:08.101Z] [PID:69773] INFO: [ClickUpServices] Initializing ClickUp Folder service
39
+ [2025-03-20T03:57:08.102Z] [PID:69773] DEBUG: [ClickUp:FolderService] Initialized FolderService
32
40
  {
33
41
  "teamId": "9014370478",
34
42
  "baseUrl": "https://api.clickup.com/api/v2"
35
43
  }
36
- [2025-03-18T04:13:46.827Z] [PID:60411] INFO: [ClickUpServices] All ClickUp services initialized successfully
44
+ [2025-03-20T03:57:08.102Z] [PID:69773] INFO: [ClickUpServices] All ClickUp services initialized successfully
37
45
  {
38
46
  "services": [
39
47
  "workspace",
@@ -43,28 +51,29 @@
43
51
  ],
44
52
  "baseUrl": "https://api.clickup.com/api/v2"
45
53
  }
46
- [2025-03-18T04:13:46.827Z] [PID:60411] INFO: [SharedServices] Services initialization complete
54
+ [2025-03-20T03:57:08.102Z] [PID:69773] INFO: [SharedServices] Services initialization complete
47
55
  {
48
56
  "services": "workspace, task, list, folder",
49
57
  "teamId": "9014370478"
50
58
  }
51
- [2025-03-18T04:13:46.828Z] [PID:60411] INFO: Starting ClickUp MCP Server...
52
- [2025-03-18T04:13:47.270Z] [PID:60411] INFO: Server environment
59
+ [2025-03-20T03:57:08.102Z] [PID:69773] INFO: [BulkService] BulkService initialized
60
+ [2025-03-20T03:57:08.103Z] [PID:69773] INFO: Starting ClickUp MCP Server...
61
+ [2025-03-20T03:57:08.569Z] [PID:69773] INFO: Server environment
53
62
  {
54
- "pid": 60411,
63
+ "pid": 69773,
55
64
  "node": "v23.5.0",
56
65
  "os": "darwin",
57
66
  "arch": "x64"
58
67
  }
59
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: Initializing workspace tools
60
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: [WorkspaceTool] Initializing workspace tool
61
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: [WorkspaceTool] Workspace tool initialized successfully
68
+ [2025-03-20T03:57:08.569Z] [PID:69773] INFO: Initializing workspace tools
69
+ [2025-03-20T03:57:08.569Z] [PID:69773] INFO: [WorkspaceTool] Initializing workspace tool
70
+ [2025-03-20T03:57:08.569Z] [PID:69773] INFO: [WorkspaceTool] Workspace tool initialized successfully
62
71
  {
63
72
  "serviceType": "WorkspaceService"
64
73
  }
65
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: Configuring server request handlers
66
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: [Server] Registering server request handlers
67
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: [Server] Registering tool handlers
74
+ [2025-03-20T03:57:08.569Z] [PID:69773] INFO: Configuring server request handlers
75
+ [2025-03-20T03:57:08.570Z] [PID:69773] INFO: [Server] Registering server request handlers
76
+ [2025-03-20T03:57:08.570Z] [PID:69773] INFO: [Server] Registering tool handlers
68
77
  {
69
78
  "toolCount": 22,
70
79
  "categories": [
@@ -74,192 +83,6 @@
74
83
  "folder"
75
84
  ]
76
85
  }
77
- [2025-03-18T04:13:47.271Z] [PID:60411] INFO: Connecting to MCP stdio transport
78
- [2025-03-18T04:13:47.272Z] [PID:60411] INFO: Server startup complete - ready to handle requests
79
- [2025-03-18T04:13:47.731Z] [PID:60411] DEBUG: [Server] Received ListTools request
80
- [2025-03-18T04:14:04.121Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_workspace_hierarchy
81
- {
82
- "params": {}
83
- }
84
- [2025-03-18T04:14:04.578Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 456ms
85
- [2025-03-18T04:14:04.982Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 403ms
86
- [2025-03-18T04:14:05.440Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 458ms
87
- [2025-03-18T04:14:05.954Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 513ms
88
- [2025-03-18T04:14:05.954Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Found 2 folderless lists in space 90141365861
89
- [2025-03-18T04:14:05.954Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding 2 lists directly to space Talib's Space (90141365861)
90
- [2025-03-18T04:14:05.954Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Personal List (901403617613)
91
- [2025-03-18T04:14:05.954Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Work List (901403621899)
92
- [2025-03-18T04:14:06.318Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 364ms
93
- [2025-03-18T04:14:06.775Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 457ms
94
- [2025-03-18T04:14:07.146Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 371ms
95
- [2025-03-18T04:14:07.147Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Found 0 folderless lists in space 90141864154
96
- [2025-03-18T04:14:07.147Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding 0 lists directly to space Education (90141864154)
97
- [2025-03-18T04:14:07.517Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 370ms
98
- [2025-03-18T04:14:07.899Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 382ms
99
- [2025-03-18T04:14:07.899Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Found 1 folderless lists in space 90141369187
100
- [2025-03-18T04:14:07.899Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding 1 lists directly to space Social Media Content (90141369187)
101
- [2025-03-18T04:14:07.899Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: VibeCase (901403679582)
102
- [2025-03-18T04:14:08.412Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 512ms
103
- [2025-03-18T04:14:08.821Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 409ms
104
- [2025-03-18T04:14:09.218Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 397ms
105
- [2025-03-18T04:14:09.641Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 423ms
106
- [2025-03-18T04:14:10.363Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 722ms
107
- [2025-03-18T04:14:11.075Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 712ms
108
- [2025-03-18T04:14:11.485Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 410ms
109
- [2025-03-18T04:14:12.099Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 614ms
110
- [2025-03-18T04:14:12.562Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 463ms
111
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Request completed successfully in 415ms
112
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Found 7 folderless lists in space 90141392755
113
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding 7 lists directly to space Custom Space (90141392755)
114
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Job Applications (901404823810)
115
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Prompts | Snippets | Commands (901407112060)
116
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Style Scraper (901408105509)
117
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: goal-tracker (901408127809)
118
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: cursor-rules-mcp-server (901408144363)
119
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: Items to Sell Online (901404691843)
120
- [2025-03-18T04:14:12.977Z] [PID:60411] DEBUG: [ClickUp:WorkspaceService] Adding list directly to space: clickup-mcp-server (901408020907)
121
- [2025-03-18T04:14:15.996Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
122
- {
123
- "params": {
124
- "listName": "clickup-mcp-server"
125
- }
126
- }
127
- [2025-03-18T04:14:15.997Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
128
- {
129
- "listId": "901407953112",
130
- "filters": {}
131
- }
132
- [2025-03-18T04:14:16.466Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 469ms
133
- [2025-03-18T04:14:19.277Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
134
- {
135
- "params": {
136
- "listId": "901407953112"
137
- }
138
- }
139
- [2025-03-18T04:14:19.277Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
140
- {
141
- "listId": "901407953112",
142
- "filters": {}
143
- }
144
- [2025-03-18T04:14:20.289Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 1012ms
145
- [2025-03-18T04:14:23.404Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
146
- {
147
- "params": {
148
- "listName": "MCP Server TypeScript Template"
149
- }
150
- }
151
- [2025-03-18T04:14:23.405Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
152
- {
153
- "listId": "901407973154",
154
- "filters": {}
155
- }
156
- [2025-03-18T04:14:23.846Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 441ms
157
- [2025-03-18T04:14:25.784Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
158
- {
159
- "params": {
160
- "listName": "style-scraper"
161
- }
162
- }
163
- [2025-03-18T04:14:25.784Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
164
- {
165
- "listId": "901408160190",
166
- "filters": {}
167
- }
168
- [2025-03-18T04:14:26.539Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 755ms
169
- [2025-03-18T04:14:28.915Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
170
- {
171
- "params": {
172
- "listName": "Style Scraper"
173
- }
174
- }
175
- [2025-03-18T04:14:28.915Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
176
- {
177
- "listId": "901408105509",
178
- "filters": {}
179
- }
180
- [2025-03-18T04:14:30.493Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 1578ms
181
- [2025-03-18T04:14:32.848Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
182
- {
183
- "params": {
184
- "listId": "901407112060"
185
- }
186
- }
187
- [2025-03-18T04:14:32.848Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
188
- {
189
- "listId": "901407112060",
190
- "filters": {}
191
- }
192
- [2025-03-18T04:14:34.933Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 2085ms
193
- [2025-03-18T04:14:37.867Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
194
- {
195
- "params": {
196
- "listName": "cursor-rules-mcp-server"
197
- }
198
- }
199
- [2025-03-18T04:14:37.867Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
200
- {
201
- "listId": "901408144363",
202
- "filters": {}
203
- }
204
- [2025-03-18T04:14:38.209Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 342ms
205
- [2025-03-18T04:14:41.460Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
206
- {
207
- "params": {
208
- "listName": "goal-tracker"
209
- }
210
- }
211
- [2025-03-18T04:14:41.460Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
212
- {
213
- "listId": "901408127809",
214
- "filters": {}
215
- }
216
- [2025-03-18T04:14:41.997Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 537ms
217
- [2025-03-18T04:14:44.058Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_tasks
218
- {
219
- "params": {
220
- "listName": "youtube-mcp-server"
221
- }
222
- }
223
- [2025-03-18T04:14:44.058Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTasks
224
- {
225
- "listId": "901407973619",
226
- "filters": {}
227
- }
228
- [2025-03-18T04:14:44.660Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 602ms
229
- [2025-03-18T04:14:48.562Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_task
230
- {
231
- "params": {
232
- "taskId": "86b48gaha"
233
- }
234
- }
235
- [2025-03-18T04:14:48.562Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTask
236
- {
237
- "taskId": "86b48gaha"
238
- }
239
- [2025-03-18T04:14:49.063Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 501ms
240
- [2025-03-18T04:14:52.146Z] [PID:60411] INFO: [Server] Received CallTool request for tool: create_task
241
- {
242
- "params": {
243
- "name": "📊 Project Setup",
244
- "listName": "clickup-mcp-server",
245
- "description": "Initial setup of the ClickUp MCP server project including repository configuration, environment setup, and dependency management."
246
- }
247
- }
248
- [2025-03-18T04:14:52.147Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: createTask
249
- {
250
- "listId": "901407953112",
251
- "name": "📊 Project Setup",
252
- "description": "Initial setup of the ClickUp MCP server project including repository configuration, environment setup, and dependency management."
253
- }
254
- [2025-03-18T04:14:52.702Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 555ms
255
- [2025-03-18T04:14:54.911Z] [PID:60411] INFO: [Server] Received CallTool request for tool: get_task
256
- {
257
- "params": {
258
- "taskId": "86b4a6cpf"
259
- }
260
- }
261
- [2025-03-18T04:14:54.911Z] [PID:60411] INFO: [ClickUp:TaskService] Operation: getTask
262
- {
263
- "taskId": "86b4a6cpf"
264
- }
265
- [2025-03-18T04:14:55.469Z] [PID:60411] DEBUG: [ClickUp:TaskService] Request completed successfully in 558ms
86
+ [2025-03-20T03:57:08.570Z] [PID:69773] INFO: Connecting to MCP stdio transport
87
+ [2025-03-20T03:57:08.570Z] [PID:69773] INFO: Server startup complete - ready to handle requests
88
+ [2025-03-20T03:57:08.584Z] [PID:69773] DEBUG: [Server] Received ListTools request