@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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taskinger/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "MCP server for Taskinger: read and write the tasks and notes of one workbook from Claude, Cursor or any MCP client.",
5
5
  "license": "MIT",
6
6
  "author": "Taskinger",