@taazkareem/clickup-mcp-server 0.4.52 → 0.4.54

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/Dockerfile ADDED
@@ -0,0 +1,42 @@
1
+ # Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2
+ # Use a Node.js base image
3
+ FROM node:18-alpine AS builder
4
+
5
+ # Set the working directory
6
+ WORKDIR /app
7
+
8
+ # Copy package files
9
+ COPY package.json package-lock.json ./
10
+
11
+ # Copy the source files and tsconfig BEFORE npm install
12
+ COPY src ./src
13
+ COPY tsconfig.json ./
14
+
15
+ # Install dependencies
16
+ RUN npm install
17
+
18
+ # Compile TypeScript to JavaScript
19
+ RUN npm run build
20
+
21
+ # Use a smaller image for the runtime
22
+ FROM node:18-alpine AS runtime
23
+
24
+ # Set the working directory
25
+ WORKDIR /app
26
+
27
+ # Copy the build output and node_modules from the builder stage
28
+ COPY --from=builder /app/build ./build
29
+ COPY --from=builder /app/node_modules ./node_modules
30
+
31
+ # Copy the entrypoint script if necessary
32
+ COPY --from=builder /app/package.json ./
33
+
34
+ # Set environment variables - don't hardcode values
35
+ ENV CLICKUP_API_KEY=""
36
+ ENV CLICKUP_TEAM_ID=""
37
+
38
+ # Expose the desired port (if the server binds to a port)
39
+ EXPOSE 8080
40
+
41
+ # Define the command to run the application
42
+ CMD ["node", "build/index.js"]
package/build/index.js CHANGED
@@ -168,7 +168,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
168
168
  }
169
169
  }
170
170
  },
171
- required: ["tasks"]
171
+ required: ["listId", "tasks"]
172
172
  }
173
173
  },
174
174
  {
@@ -304,7 +304,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
304
304
  description: "Name of the destination list - will automatically find the list by name (optional if using listId instead)"
305
305
  }
306
306
  },
307
- required: []
307
+ required: ["taskName", "listName"]
308
308
  }
309
309
  },
310
310
  {
@@ -334,7 +334,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
334
334
  description: "Name of the list to create the duplicate in - will automatically find the list by name (optional if using listId instead)"
335
335
  }
336
336
  },
337
- required: []
337
+ required: ["taskName", "listName"]
338
338
  }
339
339
  },
340
340
  {
@@ -376,7 +376,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
376
376
  description: "New due date for the task (Unix timestamp in milliseconds). Convert dates to this format before submitting."
377
377
  }
378
378
  },
379
- required: []
379
+ required: ["taskName"]
380
380
  }
381
381
  },
382
382
  {
@@ -456,7 +456,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
456
456
  description: "Object with custom field IDs as keys and desired values for filtering"
457
457
  }
458
458
  },
459
- required: []
459
+ required: ["listName"]
460
460
  }
461
461
  },
462
462
  {
@@ -478,7 +478,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
478
478
  description: "Optional: Name of the list to narrow down task search when multiple tasks have the same name"
479
479
  }
480
480
  },
481
- required: []
481
+ required: ["taskName"]
482
482
  }
483
483
  },
484
484
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taazkareem/clickup-mcp-server",
3
- "version": "0.4.52",
3
+ "version": "0.4.54",
4
4
  "description": "ClickUp MCP Server - Integrate ClickUp tasks with AI through Model Context Protocol",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -11,7 +11,7 @@
11
11
  "build",
12
12
  "README.md",
13
13
  "LICENSE",
14
- "Dockerfile.smithery",
14
+ "Dockerfile",
15
15
  "smithery.yaml"
16
16
  ],
17
17
  "scripts": {
package/smithery.yaml CHANGED
@@ -1,6 +1,6 @@
1
1
  # Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
2
2
 
3
- dockerfile: Dockerfile.smithery
3
+ dockerfile: Dockerfile
4
4
 
5
5
  startCommand:
6
6
  type: stdio