quality_updateIssueTaskContent

WRITE

Update issue task content.

Parameters

idstringrequired
typeenumrequired
contentanyrequired

Call it

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

call_tool
call_tool({
  "name": "quality_updateIssueTaskContent",
  "arguments": {
    "id": "string",
    "type": "string",
    "content": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "action",
        "approval",
        "review"
      ]
    },
    "content": {}
  },
  "required": [
    "id",
    "type",
    "content"
  ]
}