Nurama Developers

update_task_status

Set a task's top-level status to `pending`, `complete`, or `cancelled`.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Set a task's top-level status to pending, complete, or cancelled. WRITE OPERATION — visible to every project member and recorded in the task's event log. Use this when the user asks to "close", "complete", or "cancel" a task. To move a task between columns on a board without changing status (e.g. To Do → In Progress, both pending), use move_task instead.

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task to update.
status"pending" | "complete" | "cancelled"yesNew top-level status.

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task to update."
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "complete",
        "cancelled"
      ],
      "description": "New top-level status."
    }
  },
  "required": [
    "taskId",
    "status"
  ],
  "additionalProperties": false
}

On this page