@hauptsache.net/clickup-mcp 1.4.2 → 1.4.3
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
|
@@ -74,38 +74,81 @@ Turn natural language into powerful ClickUp actions:
|
|
|
74
74
|
- **Append-Only Descriptions**: Description fields are never overwritten - new content is safely appended with timestamps
|
|
75
75
|
- **Normal Field Updates**: Status, priority, assignees, tags, and dates can be updated normally (easily revertible through ClickUp's history)
|
|
76
76
|
|
|
77
|
-
##
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
77
|
+
## Installation
|
|
78
|
+
|
|
79
|
+
### Prerequisites
|
|
80
|
+
|
|
81
|
+
For all installation methods, you'll need:
|
|
82
|
+
- Your `CLICKUP_API_KEY` (Profile Icon > Settings > Apps > API Token ~ usually starts with pk_)
|
|
83
|
+
- Your `CLICKUP_TEAM_ID` (The 7–10 digit number in the URL when you are in the settings)
|
|
84
|
+
|
|
85
|
+
### Option 1: MCPB Bundle (Recommended for Claude Desktop)
|
|
86
|
+
|
|
87
|
+
Download the pre-built bundle from our [releases page](https://github.com/hauptsacheNet/clickup-mcp/releases). This method requires no Node.js installation.
|
|
88
|
+
|
|
89
|
+
You'll get a configuration screen where you are prompted to enter your API key and team ID.
|
|
90
|
+
|
|
91
|
+
### Option 2: NPX Installation
|
|
92
|
+
|
|
93
|
+
This method automatically updates to the latest version and is preferred for users who want the newest features.
|
|
94
|
+
|
|
95
|
+
**For Claude Desktop, Windsurf, Cursor and others:**
|
|
96
|
+
|
|
97
|
+
Add the following to your MCP configuration file:
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"mcpServers": {
|
|
102
|
+
"clickup": {
|
|
103
|
+
"command": "npx",
|
|
104
|
+
"args": [
|
|
105
|
+
"@hauptsache.net/clickup-mcp@latest"
|
|
106
|
+
],
|
|
107
|
+
"env": {
|
|
108
|
+
"CLICKUP_API_KEY": "your_api_key",
|
|
109
|
+
"CLICKUP_TEAM_ID": "your_team_id"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Replace `your_api_key` and `your_team_id` with your actual ClickUp credentials.
|
|
117
|
+
|
|
118
|
+
**Where to add this configuration:**
|
|
119
|
+
- **Claude Desktop**: Settings > Developer > Edit Config
|
|
120
|
+
- **Windsurf**: Add to your MCP configuration file
|
|
121
|
+
- **Cursor**: Configure through the MCP settings panel
|
|
122
|
+
|
|
123
|
+
### Option 3: Coding Tools Integration
|
|
124
|
+
|
|
125
|
+
**Claude Code (CLI):**
|
|
126
|
+
```bash
|
|
127
|
+
claude mcp add clickup \
|
|
128
|
+
--env CLICKUP_API_KEY=YOUR_KEY \
|
|
129
|
+
--env CLICKUP_TEAM_ID=YOUR_ID \
|
|
130
|
+
--env CLICKUP_MCP_MODE=read-minimal \
|
|
131
|
+
--env MAX_IMAGES=16 \
|
|
132
|
+
--env MAX_RESPONSE_SIZE_MB=4 \
|
|
133
|
+
-- npx -y @hauptsache.net/clickup-mcp
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
> Claude Code can handle a lot of images, thus the recommended increased limits.
|
|
137
|
+
|
|
138
|
+
> Note the `CLICKUP_MCP_MODE=read-minimal`. This is my usage recommendation, but feel free to use one of the other modes.
|
|
139
|
+
|
|
140
|
+
**OpenAI Codex:**
|
|
141
|
+
Add these lines to your `~/.codex/config.toml` file:
|
|
142
|
+
```toml
|
|
143
|
+
[mcp_servers.clickup]
|
|
144
|
+
command = "npx"
|
|
145
|
+
args = ["-y", "@hauptsache.net/clickup-mcp@latest"]
|
|
146
|
+
env = { "CLICKUP_API_KEY" = "YOUR_KEY", "CLICKUP_TEAM_ID" = "YOUR_ID", "CLICKUP_MCP_MODE" = "read-minimal" }
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
> Codex seems to not be able to handle images from MCP's. See [this issue](https://github.com/openai/codex/issues/3741) for more details.
|
|
150
|
+
|
|
151
|
+
> Note the `CLICKUP_MCP_MODE=read-minimal`. This is my usage recommendation, but feel free to use one of the other modes.
|
|
109
152
|
|
|
110
153
|
## MCP Modes & Available Tools
|
|
111
154
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"space-resources.d.ts","sourceRoot":"","sources":["../../src/resources/space-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAoB,MAAM,yCAAyC,CAAC;AAiBtF;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"space-resources.d.ts","sourceRoot":"","sources":["../../src/resources/space-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAoB,MAAM,yCAAyC,CAAC;AAiBtF;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,SAAS,QAwFvD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hauptsache.net/clickup-mcp",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Search, create, and retrieve tasks, add comments, and track time through natural language commands.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
14
|
"start": "node dist/index.js",
|
|
15
|
-
"dev": "tsc -w & nodemon dist/index.js",
|
|
15
|
+
"dev": "npx tsc -w & nodemon dist/index.js",
|
|
16
16
|
"cli": "npx ts-node src/cli.ts",
|
|
17
17
|
"prettier": "prettier --write src/**/*.ts",
|
|
18
18
|
"prepublishOnly": "rm -r dist && npm run build",
|
|
19
19
|
"release": "npm run build && npm publish --access public && git add . && git commit -m \"Release v$(node -p 'require(\"./package.json\").version')\" && git tag -a v$(node -p 'require(\"./package.json\").version') -m \"Release v$(node -p 'require(\"./package.json\").version')\" && git push && git push --tags",
|
|
20
|
-
"
|
|
20
|
+
"mcpb": "npm run build && mcpb pack . ClickUp.mcpb",
|
|
21
21
|
"test": "node --test -r ts-node/register src/**/*.test.ts"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"zod": "^3.24.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@anthropic-ai/mcpb": "^1.1.1",
|
|
48
49
|
"@types/node": "^22.14.1",
|
|
49
50
|
"dotenv": "^16.5.0",
|
|
50
51
|
"nodemon": "^3.1.9",
|