@taazkareem/clickup-mcp-server 0.4.66 → 0.4.67

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/LICENSE CHANGED
@@ -18,10 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  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
- 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.
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,40 +1,44 @@
1
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
2
 
3
3
  # MCP Server
4
+ 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
5
 
5
- > 🚧 **Status Update:** The code refactoring has been completed. Enhanced due date functionality now supports relative time expressions like "2 hours from now" with proper time display in ClickUp!
6
+ > 🚧 **Status Update:** -The code refactoring has been completed. -Enhanced due date functionality now supports relative time expressions like "2 hours from now" with proper time display in ClickUp. -Server has been listed on Smithery, Glama, and Pulse MCP
6
7
 
7
- 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.
8
+ <a href="https://glama.ai/mcp/servers/iwjvs2zy63">
9
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/iwjvs2zy63/badge" alt="ClickUp Server MCP server" />
10
+ </a>
8
11
 
9
- ## npx Quick Start
12
+ ## Quick Start
10
13
 
11
14
  Directions for use with Cursor Composer Agent:
12
15
 
13
16
  1. Get your credentials:
14
17
  - ClickUp API key from [ClickUp Settings](https://app.clickup.com/settings/apps)
15
18
  - Team ID from your ClickUp workspace URL
16
- 2. Go to Features in settings
19
+ 2. Go to Features in settings (or MCP Servers depending on version)
17
20
  3. Add under MCP Servers:
18
21
  ```bash
19
- npx -y @taazkareem/clickup-mcp-server \
22
+ npx -y @taazkareem/clickup-mcp-server@latest \
20
23
  --env CLICKUP_API_KEY=your_api_key_here \
21
24
  --env CLICKUP_TEAM_ID=your_team_id_here
22
25
  ```
23
26
  4. Replace the credentials and click Save
24
27
  5. Use Natural Language to interact with your ClickUp Workspace!
25
28
 
26
- ## Smithery
29
+
30
+ ## Smithery Installation (recommended)
27
31
 
28
32
  [![smithery badge](https://smithery.ai/badge/@TaazKareem/clickup-mcp-server)](https://smithery.ai/server/@TaazKareem/clickup-mcp-server)
29
33
 
30
- The server is also hosted on Smithery. There, you can preview the available tools or copy the commands to run on various clients.
34
+ The server is hosted on Smithery. There, you can preview the available tools or copy the commands to run on various clients.
31
35
 
32
36
  ## Features
33
37
 
34
38
  - 🎯 **Task Management**
35
39
  - Create, update, and delete individual tasks
36
40
  - Move and duplicate tasks between lists, spaces, and folders
37
- - Create multiple tasks in bulk
41
+ - Create, update, move,and delete multiple tasks in bulk
38
42
  - View and modify task details and properties
39
43
  - Set due dates using natural language and relative time expressions
40
44
 
@@ -50,12 +54,6 @@ The server is also hosted on Smithery. There, you can preview the available tool
50
54
  - Markdown formatting support
51
55
  - Built-in API rate limiting
52
56
 
53
- - 🤖 **AI-Powered Analysis**
54
- - Task status summaries and overviews
55
- - Priority analysis and recommendations
56
- - Structured description generation
57
- - Task relationship mapping
58
-
59
57
  ## Available Tools
60
58
 
61
59
  | Tool | Description | Required Parameters |
@@ -85,6 +83,7 @@ The server is also hosted on Smithery. There, you can preview the available tool
85
83
  See [full documentation](docs/api-reference.md) for optional parameters and advanced usage.
86
84
 
87
85
  ## Available Prompts
86
+ Not yet implemented (or needed. For now, you can send a follow up prompt after tool result.)
88
87
 
89
88
  | Prompt | Purpose | Features |
90
89
  |--------|---------|----------|
@@ -116,3 +115,11 @@ Contributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md)
116
115
 
117
116
  This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
118
117
 
118
+ ## Disclaimer
119
+
120
+ Disclaimer: This software makes use of third-party APIs and may reference trademarks
121
+ or brands owned by third parties. The use of such APIs or references does not imply
122
+ any affiliation with or endorsement by the respective companies. All trademarks and
123
+ brand names are the property of their respective owners. This project is an independent
124
+ work and is not officially associated with or sponsored by any third-party company mentioned.
125
+
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Tool definition for checking cache status
3
+ */
4
+ export const checkCacheTool = {
5
+ name: 'check_cache',
6
+ description: 'Inspect the cache state and contents. Shows cache statistics and the workspace hierarchy.',
7
+ inputSchema: {
8
+ type: 'object',
9
+ properties: {
10
+ showStats: {
11
+ type: 'boolean',
12
+ description: 'Whether to include cache statistics in the response'
13
+ }
14
+ }
15
+ }
16
+ };
17
+ /**
18
+ * MCP tool for inspecting the cache state and contents
19
+ * @param cacheService The cache service instance
20
+ * @param params Parameters for the check_cache tool
21
+ * @returns Cache information based on the provided parameters
22
+ */
23
+ export async function check_cache(cacheService, params) {
24
+ const response = {};
25
+ // Include cache statistics if requested
26
+ if (params.showStats) {
27
+ response.stats = cacheService.getStats();
28
+ }
29
+ // Get the workspace hierarchy
30
+ const workspaceHierarchy = cacheService.getWorkspaceHierarchy();
31
+ // Always include the hierarchy in the response
32
+ response.hierarchy = workspaceHierarchy;
33
+ // Return formatted response
34
+ return {
35
+ content: [{
36
+ type: 'text',
37
+ text: JSON.stringify(response, null, 2)
38
+ }]
39
+ };
40
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taazkareem/clickup-mcp-server",
3
- "version": "0.4.66",
3
+ "version": "0.4.67",
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",
@@ -56,15 +56,15 @@
56
56
  "homepage": "https://github.com/taazkareem/clickup-mcp-server#readme",
57
57
  "dependencies": {
58
58
  "@modelcontextprotocol/sdk": "0.6.0",
59
- "axios": "^1.6.7",
60
- "dotenv": "^16.4.1"
59
+ "axios": "1.6.7",
60
+ "dotenv": "16.4.1"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/node": "^20.11.16",
64
64
  "typescript": "^5.3.3"
65
65
  },
66
66
  "engines": {
67
- "node": ">=18.0.0"
67
+ "node": ">=18.0.0 <23.0.0"
68
68
  },
69
69
  "publishConfig": {
70
70
  "access": "public"