@taskinger/mcp 0.1.0 → 0.2.0
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -73,9 +73,10 @@ server.tool('get_workbook', 'The workbook this server is connected to: its name,
|
|
|
73
73
|
return failure(error);
|
|
74
74
|
}
|
|
75
75
|
});
|
|
76
|
-
server.tool('list_tasks', 'List tasks, most recently updated first. Filter by status (comma-separated: todo, in_progress, awaiting_approval, done), assignee uid, project id (or "root"), or updatedSince (ISO-8601). Up to 200.', {
|
|
76
|
+
server.tool('list_tasks', 'List tasks, most recently updated first. Filter by status (comma-separated: todo, in_progress, awaiting_approval, done), assignee uid, label id, project id (or "root"), or updatedSince (ISO-8601). Up to 200.', {
|
|
77
77
|
status: z.string().optional(),
|
|
78
78
|
assignee: z.string().optional(),
|
|
79
|
+
label: z.string().optional().describe('A label id from list_labels — how a shared label like "claude" addresses tasks to an assistant'),
|
|
79
80
|
projectId: z.string().optional(),
|
|
80
81
|
updatedSince: z.string().optional(),
|
|
81
82
|
limit: z.number().int().min(1).max(200).optional(),
|
package/package.json
CHANGED