update_follow_up_task
Close, reopen, snooze, or reschedule one follow-up task. Completing it records that a person handled the reminder — it does not message the contact. Snoozing moves the due time too, so the task reappears when the snooze ends.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dueAt | No | New due time for `reschedule`. ISO 8601, in the future. | |
| action | Yes | complete: close it. reopen: reopen a completed one. snooze: push it out to a time. reschedule: change dueAt and/or reasonText. | |
| reason | No | Optional completion reason stored with a `complete`. Defaults to "completed_by_user". | |
| taskId | Yes | Required. Follow-up task id, as returned by list_follow_up_tasks. | |
| reasonText | No | New reason line for `reschedule`. | |
| snoozeUntil | No | Required for `snooze`. ISO 8601 timestamp in the future. | |
| applicationId | No | Application (workspace) id. Optional: an application-scoped key (app_...) defaults to its own application, but a personal key (usr_...) has no default and omitting it fails with MCP_APPLICATION_REQUIRED. Call list_applications to get the id. |