@taazkareem/clickup-mcp-server 0.4.43 → 0.4.44

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.
Files changed (2) hide show
  1. package/build/index.js +67 -4
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -27,12 +27,75 @@ console.log('Creating MCP server...');
27
27
  const server = new Server({
28
28
  name: "clickup",
29
29
  version: "0.1.0",
30
+ description: "ClickUp MCP Server"
30
31
  }, {
31
32
  capabilities: {
32
- resources: {},
33
- tools: {},
34
- prompts: {},
35
- },
33
+ resources: {
34
+ schemes: ["clickup"],
35
+ canList: true,
36
+ canRead: true
37
+ },
38
+ tools: {
39
+ canList: true,
40
+ canExecute: true,
41
+ tools: [
42
+ {
43
+ name: "workspace_hierarchy",
44
+ description: "List complete hierarchy of the ClickUp workspace"
45
+ },
46
+ {
47
+ name: "create_task",
48
+ description: "Create a new task in ClickUp"
49
+ },
50
+ {
51
+ name: "create_bulk_tasks",
52
+ description: "Create multiple tasks in a ClickUp list"
53
+ },
54
+ {
55
+ name: "create_list",
56
+ description: "Create a new list in a ClickUp space"
57
+ },
58
+ {
59
+ name: "create_folder",
60
+ description: "Create a new folder in a ClickUp space"
61
+ },
62
+ {
63
+ name: "create_list_in_folder",
64
+ description: "Create a new list in a ClickUp folder"
65
+ },
66
+ {
67
+ name: "move_task",
68
+ description: "Move a task to a different list"
69
+ },
70
+ {
71
+ name: "duplicate_task",
72
+ description: "Duplicate a task to a list"
73
+ },
74
+ {
75
+ name: "update_task",
76
+ description: "Update an existing task in ClickUp"
77
+ }
78
+ ]
79
+ },
80
+ prompts: {
81
+ canList: true,
82
+ canExecute: true,
83
+ prompts: [
84
+ {
85
+ name: "summarize_tasks",
86
+ description: "Summarize all ClickUp tasks"
87
+ },
88
+ {
89
+ name: "analyze_task_priorities",
90
+ description: "Analyze task priorities"
91
+ },
92
+ {
93
+ name: "generate_description",
94
+ description: "Generate a detailed task description with objectives, success criteria, resources, and dependencies"
95
+ }
96
+ ]
97
+ }
98
+ }
36
99
  });
37
100
  console.log('MCP server created');
38
101
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taazkareem/clickup-mcp-server",
3
- "version": "0.4.43",
3
+ "version": "0.4.44",
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",