human_cancel_task
Cancel a pending or in-progress human task by providing its task ID.
Instructions
Cancel a pending or in-progress human task.
Attempts to cancel the task both in the local system and on the backend service. Cancellation may not be possible if the task is already completed.
PARAMETERS:
task_id: The UUID of the task to cancel.
RETURNS: { task_id, cancelled: boolean, message: string }
EXAMPLES:
Cancel a task: { task_id: "550e8400-e29b-41d4-a716-446655440000" }
DON'T USE WHEN:
The task is already completed (check status first with human_get_task_status)
You want to modify a task (cancellation is permanent — dispatch a new task instead)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The UUID of the task to look up, as returned by human_dispatch_task |