mindwtr-mcp 1.1.6 → 1.1.8
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 +6 -4
- package/dist/index.js +2735 -526
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -407,10 +407,11 @@ 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?, areaId?, dueDate?, startTime?, reviewAt?, recurrence?, contexts?, tags?, description?, priority?, energyLevel?, assignedTo?, timeEstimate?, taskMode?, relativeStartOffset?, showFutureRecurrence?, pushCount?, checklist?, textDirection?, location?, isFocusedToday?, timeSpentMinutes?, suppressMindwtrReminders?, repeatReminderMinutes? }`
|
|
410
|
+
- Input: `{ title? | quickAdd?, status?, projectId?, sectionId?, areaId?, dueDate?, startTime?, reviewAt?, recurrence?, contexts?, tags?, description?, priority?, energyLevel?, assignedTo?, timeEstimate?, taskMode?, relativeStartOffset?, showFutureRecurrence?, pushCount?, checklist?, textDirection?, location?, isFocusedToday?, timeSpentMinutes?, suppressMindwtrReminders?, repeatReminderMinutes?, attachments? }`
|
|
411
411
|
- `mindwtr_update_task` **(requires `--write`)**
|
|
412
|
-
- Input: `{ id, title?, status?, projectId?, sectionId?, areaId?, dueDate?, startTime?, reviewAt?, recurrence?, contexts?, tags?, description?, priority?, energyLevel?, assignedTo?, timeEstimate?, taskMode?, relativeStartOffset?, showFutureRecurrence?, pushCount?, checklist?, textDirection?, location?, isFocusedToday?, timeSpentMinutes?, suppressMindwtrReminders?, repeatReminderMinutes?, order?, boardOrder?, focusOrder? }`
|
|
412
|
+
- Input: `{ id, title?, status?, projectId?, sectionId?, areaId?, dueDate?, startTime?, reviewAt?, recurrence?, contexts?, tags?, description?, priority?, energyLevel?, assignedTo?, timeEstimate?, taskMode?, relativeStartOffset?, showFutureRecurrence?, pushCount?, checklist?, textDirection?, location?, isFocusedToday?, timeSpentMinutes?, suppressMindwtrReminders?, repeatReminderMinutes?, order?, boardOrder?, focusOrder?, attachments? }`
|
|
413
413
|
- `recurrence` accepts a recurrence object or an RFC 5545 RRULE string. Pass `null` to clear it.
|
|
414
|
+
- `attachments` holds link attachments only (`{ id?, title?, uri }`, e.g. `obsidian://`, `file://` or `https://`). The list you pass is the complete set of links: links you leave out are removed, file attachments are never touched, and `null` clears every link.
|
|
414
415
|
- `mindwtr_complete_task` **(requires `--write`)**
|
|
415
416
|
- Input: `{ id }`
|
|
416
417
|
- `mindwtr_delete_task` **(requires `--write`)**
|
|
@@ -418,9 +419,10 @@ Any MCP-compatible client can work as long as it can launch a **stdio** server w
|
|
|
418
419
|
- `mindwtr_restore_task` **(requires `--write`)**
|
|
419
420
|
- Input: `{ id }`
|
|
420
421
|
- `mindwtr_add_project` **(requires `--write`)**
|
|
421
|
-
- Input: `{ title, color?, status?, areaId?, isSequential?, isFocused?, dueDate?, reviewAt?, supportNotes? }`
|
|
422
|
+
- Input: `{ title, color?, status?, areaId?, isSequential?, isFocused?, dueDate?, startDate?, reviewAt?, supportNotes?, attachments? }`
|
|
422
423
|
- `mindwtr_update_project` **(requires `--write`)**
|
|
423
|
-
- Input: `{ id, title?, color?, status?, areaId?, isSequential?, isFocused?, dueDate?, reviewAt?, supportNotes? }`
|
|
424
|
+
- Input: `{ id, title?, color?, status?, areaId?, isSequential?, isFocused?, dueDate?, startDate?, reviewAt?, supportNotes?, attachments? }`
|
|
425
|
+
- `attachments` follows the same rule as `mindwtr_update_task`: link attachments only, the list is the complete set of links, and `null` clears them.
|
|
424
426
|
- `mindwtr_delete_project` **(requires `--write`)**
|
|
425
427
|
- Input: `{ id }`
|
|
426
428
|
- `mindwtr_add_section` **(requires `--write`)**
|