@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 +1 -1
- package/build/server.log +1 -0
- package/build/tools/documents.js +10 -20
- package/package.json +1 -1
package/build/server.js
CHANGED
package/build/server.log
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Logging initialized to /Volumes/Code/Projects/MCP/clickup-mcp-server/build/server.log
|
package/build/tools/documents.js
CHANGED
|
@@ -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