@taazkareem/clickup-mcp-server 0.4.52 → 0.4.53
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/index.js +6 -6
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -168,7 +168,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
|
-
required: ["tasks"]
|
|
171
|
+
required: ["listId", "tasks"]
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
174
|
{
|
|
@@ -304,7 +304,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
304
304
|
description: "Name of the destination list - will automatically find the list by name (optional if using listId instead)"
|
|
305
305
|
}
|
|
306
306
|
},
|
|
307
|
-
required: []
|
|
307
|
+
required: ["taskName", "listName"]
|
|
308
308
|
}
|
|
309
309
|
},
|
|
310
310
|
{
|
|
@@ -334,7 +334,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
334
334
|
description: "Name of the list to create the duplicate in - will automatically find the list by name (optional if using listId instead)"
|
|
335
335
|
}
|
|
336
336
|
},
|
|
337
|
-
required: []
|
|
337
|
+
required: ["taskName", "listName"]
|
|
338
338
|
}
|
|
339
339
|
},
|
|
340
340
|
{
|
|
@@ -376,7 +376,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
376
376
|
description: "New due date for the task (Unix timestamp in milliseconds). Convert dates to this format before submitting."
|
|
377
377
|
}
|
|
378
378
|
},
|
|
379
|
-
required: []
|
|
379
|
+
required: ["taskName"]
|
|
380
380
|
}
|
|
381
381
|
},
|
|
382
382
|
{
|
|
@@ -456,7 +456,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
456
456
|
description: "Object with custom field IDs as keys and desired values for filtering"
|
|
457
457
|
}
|
|
458
458
|
},
|
|
459
|
-
required: []
|
|
459
|
+
required: ["listName"]
|
|
460
460
|
}
|
|
461
461
|
},
|
|
462
462
|
{
|
|
@@ -478,7 +478,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
478
478
|
description: "Optional: Name of the list to narrow down task search when multiple tasks have the same name"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
-
required: []
|
|
481
|
+
required: ["taskName"]
|
|
482
482
|
}
|
|
483
483
|
},
|
|
484
484
|
{
|
package/package.json
CHANGED