quality_updateIssueTaskStatus

WRITE

Update issue task status.

Parameters

idstringrequired
statusenumrequired
typeenumrequired
assigneestringnulloptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "quality_updateIssueTaskStatus",
  "arguments": {
    "id": "string",
    "status": "string",
    "type": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Completed",
        "Skipped",
        "In Progress"
      ]
    },
    "type": {
      "type": "string",
      "enum": [
        "investigation",
        "action",
        "approval",
        "review"
      ]
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "id",
    "status",
    "type"
  ]
}