mindwtr-mcp 1.1.2 → 1.1.3
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/README.md +3 -2
- package/dist/index.js +15844 -11365
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -407,9 +407,10 @@ Any MCP-compatible client can work as long as it can launch a **stdio** server w
|
|
|
407
407
|
- `mindwtr_get_task`
|
|
408
408
|
- Input: `{ id, includeDeleted? }`
|
|
409
409
|
- `mindwtr_add_task` **(requires `--write`)**
|
|
410
|
-
- Input: `{ title? | quickAdd?, status?, projectId?, sectionId?, dueDate?, startTime?, contexts?, tags?, description?, priority?, timeEstimate? }`
|
|
410
|
+
- Input: `{ title? | quickAdd?, status?, projectId?, sectionId?, dueDate?, startTime?, recurrence?, contexts?, tags?, description?, priority?, timeEstimate? }`
|
|
411
411
|
- `mindwtr_update_task` **(requires `--write`)**
|
|
412
|
-
- Input: `{ id, title?, status?, projectId?, sectionId?, dueDate?, startTime?, contexts?, tags?, description?, priority?, timeEstimate?, reviewAt?, isFocusedToday? }`
|
|
412
|
+
- Input: `{ id, title?, status?, projectId?, sectionId?, dueDate?, startTime?, recurrence?, contexts?, tags?, description?, priority?, timeEstimate?, reviewAt?, isFocusedToday? }`
|
|
413
|
+
- `recurrence` accepts a recurrence object or an RFC 5545 RRULE string. Pass `null` to clear it.
|
|
413
414
|
- `mindwtr_complete_task` **(requires `--write`)**
|
|
414
415
|
- Input: `{ id }`
|
|
415
416
|
- `mindwtr_delete_task` **(requires `--write`)**
|