@hauptsache.net/clickup-mcp 1.0.0 → 1.0.1

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
@@ -57,6 +57,30 @@ npm start
57
57
 
58
58
  This will start the server using the standard input/output for communication, following the Model Context Protocol.
59
59
 
60
+ ### Using with Claude Desktop or Similar LLM Apps
61
+
62
+ You can use this MCP server with Claude Desktop or similar applications by adding it to your MCP configuration:
63
+
64
+ ```json
65
+ {
66
+ "mcpServers": {
67
+ "clickup": {
68
+ "command": "npx",
69
+ "args": [
70
+ "-y",
71
+ "@hauptsache.net/clickup-mcp"
72
+ ],
73
+ "env": {
74
+ "CLICKUP_API_KEY": "your_api_key",
75
+ "CLICKUP_TEAM_ID": "your_team_id"
76
+ }
77
+ }
78
+ }
79
+ }
80
+ ```
81
+
82
+ Replace `your_api_key` and `your_team_id` with your actual ClickUp credentials. This configuration allows Claude or other LLMs to directly access your ClickUp tasks.
83
+
60
84
  ### CLI Usage
61
85
 
62
86
  For testing or manual usage, you can use the CLI interface:
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
3
  export declare const server: McpServer;
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAgBpE,eAAO,MAAM,MAAM,WAGjB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAgBpE,eAAO,MAAM,MAAM,WAGjB,CAAC"}
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  Object.defineProperty(exports, "__esModule", { value: true });
3
4
  exports.server = void 0;
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@hauptsache.net/clickup-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A minimal implementation of a Model Context Protocol (MCP) server for ClickUp integration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "bin": "dist/index.js",
7
8
  "files": [
8
9
  "dist",
9
10
  "README.md"