@taazkareem/clickup-mcp-server 0.2.4 → 0.2.5

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.
@@ -0,0 +1,36 @@
1
+ # Use a Node.js base image
2
+ FROM node:18-alpine AS builder
3
+
4
+ # Set the working directory
5
+ WORKDIR /app
6
+
7
+ # Copy package files and TypeScript config
8
+ COPY package.json package-lock.json tsconfig.json ./
9
+
10
+ # Copy the source files
11
+ COPY src/ ./src/
12
+
13
+ # Install dependencies and build
14
+ RUN npm install
15
+ RUN npm run build
16
+
17
+ # Use a smaller image for the runtime
18
+ FROM node:18-alpine AS runtime
19
+
20
+ # Set the working directory
21
+ WORKDIR /app
22
+
23
+ # Copy the build output and node_modules from the builder stage
24
+ COPY --from=builder /app/build ./build
25
+ COPY --from=builder /app/node_modules ./node_modules
26
+ COPY --from=builder /app/package.json ./
27
+
28
+ # Set environment variables (these will be overridden by Smithery)
29
+ ENV CLICKUP_API_KEY=placeholder
30
+ ENV CLICKUP_TEAM_ID=placeholder
31
+
32
+ # Expose the port if needed
33
+ EXPOSE 8080
34
+
35
+ # Define the command to run the application
36
+ CMD ["node", "build/index.js"]
package/LICENSE CHANGED
@@ -19,3 +19,9 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
22
+
23
+ Disclaimer: This software makes use of third-party APIs and may reference trademarks
24
+ or brands owned by third parties. The use of such APIs or references does not imply
25
+ any affiliation with or endorsement by the respective companies. All trademarks and
26
+ brand names are the property of their respective owners. This project is an independent
27
+ work and is not officially associated with or sponsored by any third-party company mentioned.
package/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # ClickUp MCP Server
1
+ <img src="https://clickup.com/assets/brand/logo-v3-clickup-dark.svg" alt="ClickUp" height="40" style="vertical-align: middle; margin-top: -4px;">
2
+
3
+ # MCP Server
2
4
 
3
5
  A Model Context Protocol (MCP) server for integrating ClickUp tasks with AI applications. This server allows AI agents to interact with ClickUp tasks, spaces, lists, and folders through a standardized protocol.
4
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taazkareem/clickup-mcp-server",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
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",
@@ -10,7 +10,9 @@
10
10
  "files": [
11
11
  "build",
12
12
  "README.md",
13
- "LICENSE"
13
+ "LICENSE",
14
+ "Dockerfile.smithery",
15
+ "smithery.yaml"
14
16
  ],
15
17
  "scripts": {
16
18
  "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
package/smithery.yaml ADDED
@@ -0,0 +1,23 @@
1
+ # Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
2
+
3
+ dockerfile: Dockerfile.smithery
4
+
5
+ startCommand:
6
+ type: stdio
7
+ configSchema:
8
+ # JSON Schema defining the configuration options for the MCP.
9
+ type: object
10
+ required:
11
+ - clickupApiKey
12
+ - clickupTeamId
13
+ properties:
14
+ clickupApiKey:
15
+ type: string
16
+ description: Your ClickUp API key.
17
+ clickupTeamId:
18
+ type: string
19
+ description: Your ClickUp Team ID.
20
+ commandFunction:
21
+ # A function that produces the CLI command to start the MCP on stdio.
22
+ |-
23
+ (config) => ({ command: 'node', args: ['build/index.js'], env: { CLICKUP_API_KEY: config.clickupApiKey, CLICKUP_TEAM_ID: config.clickupTeamId } })