task_write
Create or update a task (non-destructive). action: create | update. Deletion is a separate tool (delete_task). (consolidated surface — same handlers as the legacy tools) Required per action — create: content | update: id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | [update] Task ID (required) | |
| notes | No | [create] Additional notes or details for the task [update] Update notes (or 'null' to clear) | |
| action | Yes | which operation to run | |
| content | No | [create] Task content (required) [update] New task content | |
| due_date | No | [create] Due date in ISO format (e.g., '2026-01-28' or '2026-01-28T15:00:00+09:00') [update] Update due date in ISO format (or 'null' to clear) | |
| due_time | No | [create] Due time in HH:MM format (e.g., '15:00'). If not provided, task is treated as all-day. [update] Update due time in HH:MM format (or 'null' to make all-day) | |
| location | No | [create] Location where the task takes place [update] Update location (or 'null' to clear) | |
| is_all_day | No | [create] Mark as all-day event — suppresses time-of-day rendering. [update] Toggle all-day mode. | |
| start_date | No | [create] Start date for date range tasks in ISO format (e.g., for multi-day events) [update] Update start date in ISO format (or 'null' to clear) | |
| category_id | No | [create] Category ID (UUID) to organize the task [update] Update category ID (or 'null' to remove category) | |
| repeat_rule | No | [create] Recurrence rule (e.g., 'daily', 'weekly', 'monthly', 'yearly', or RRULE format) [update] Update recurrence rule (or 'null' to make non-recurring) | |
| travel_time | No | [create] Minutes of travel time to allow before due_date. [update] Update travel-time minutes. | |
| completed_at | No | [update] Mark as completed (ISO format) or 'null' to uncomplete | |
| is_important | No | [create] Mark task as important (default: false) [update] Update important status | |
| location_lat | No | [create] GPS latitude. Pair with location_lng. [update] Update GPS latitude. | |
| location_lng | No | [create] GPS longitude. Pair with location_lat. [update] Update GPS longitude. | |
| reminder_timing | No | [create] Minutes before due time to send reminder (e.g., 10 for 10 minutes before). Default: 30. Only used when has_notification is true. [update] Minutes before due time to send reminder (e.g., 10 for 10 minutes before). Only used when has_notification is true. | |
| has_notification | No | [create] Enable reminder notifications (default: false) [update] Enable/disable reminder notifications | |
| reminder_timings | No | [create] Multiple reminder offsets in minutes before due time (e.g., [10, 60] fires 10 min and 1 hour before). Overrides reminder_timing if provided. [update] Multiple reminder offsets in minutes before due time (e.g., [10, 60]). Pass empty array [] to clear. |