@taazkareem/clickup-mcp-server 0.8.0 → 0.8.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/build/server.js CHANGED
@@ -22,7 +22,7 @@ const logger = new Logger('Server');
22
22
  const { workspace } = clickUpServices;
23
23
  export const server = new Server({
24
24
  name: "clickup-mcp-server",
25
- version: "0.8.0",
25
+ version: "0.8.1",
26
26
  }, {
27
27
  capabilities: {
28
28
  tools: {},
@@ -0,0 +1 @@
1
+ Logging initialized to /Volumes/Code/Projects/MCP/clickup-mcp-server/build/server.log
@@ -134,8 +134,7 @@ export const listDocumentPagesTool = {
134
134
  },
135
135
  max_page_depth: {
136
136
  type: "number",
137
- description: "Maximum depth of pages to retrieve (-1 for unlimited)",
138
- optional: true
137
+ description: "Maximum depth of pages to retrieve (-1 for unlimited)"
139
138
  }
140
139
  },
141
140
  required: ["documentId"]
@@ -164,8 +163,7 @@ export const getDocumentPagesTool = {
164
163
  content_format: {
165
164
  type: "string",
166
165
  enum: ["text/md", "text/html"],
167
- description: "Format of the content to retrieve",
168
- optional: true
166
+ description: "Format of the content to retrieve"
169
167
  }
170
168
  },
171
169
  required: ["documentId", "pageIds"]
@@ -186,8 +184,7 @@ export const createDocumentPageTool = {
186
184
  },
187
185
  content: {
188
186
  type: "string",
189
- description: "Content of the page",
190
- optional: true
187
+ description: "Content of the page"
191
188
  },
192
189
  name: {
193
190
  type: "string",
@@ -195,13 +192,11 @@ export const createDocumentPageTool = {
195
192
  },
196
193
  sub_title: {
197
194
  type: "string",
198
- description: "Subtitle of the page",
199
- optional: true
195
+ description: "Subtitle of the page"
200
196
  },
201
197
  parent_page_id: {
202
198
  type: "string",
203
- description: "ID of the parent page (if this is a sub-page)",
204
- optional: true
199
+ description: "ID of the parent page (if this is a sub-page)"
205
200
  }
206
201
  },
207
202
  required: ["documentId", "name"]
@@ -226,30 +221,25 @@ export const updateDocumentPageTool = {
226
221
  },
227
222
  name: {
228
223
  type: "string",
229
- description: "New name for the page",
230
- optional: true
224
+ description: "New name for the page"
231
225
  },
232
226
  sub_title: {
233
227
  type: "string",
234
- description: "New subtitle for the page",
235
- optional: true
228
+ description: "New subtitle for the page"
236
229
  },
237
230
  content: {
238
231
  type: "string",
239
- description: "New content for the page",
240
- optional: true
232
+ description: "New content for the page"
241
233
  },
242
234
  content_edit_mode: {
243
235
  type: "string",
244
236
  enum: ["replace", "append", "prepend"],
245
- description: "How to update the content. Defaults to replace",
246
- optional: true
237
+ description: "How to update the content. Defaults to replace"
247
238
  },
248
239
  content_format: {
249
240
  type: "string",
250
241
  enum: ["text/md", "text/plain"],
251
- description: "Format of the content. Defaults to text/md",
252
- optional: true
242
+ description: "Format of the content. Defaults to text/md"
253
243
  },
254
244
  },
255
245
  required: ["documentId", "pageId"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taazkareem/clickup-mcp-server",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
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",