@taazkareem/clickup-mcp-server 0.4.53 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taazkareem/clickup-mcp-server",
3
- "version": "0.4.53",
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