Skip to content
Developer Preview

TaskStopParams

task/stop params: stop one named background task. Required target, never “whichever is loudest” — §3.15 is the blanket verb.

  • commandId
  • sessionId
  • taskId
Source

schema/msp/experimental/msp.schema.json#/types/TaskStopParams

{
"description": "`task/stop` params: stop one named background task. Required\ntarget, never \"whichever is loudest\" — §3.15 is the blanket verb.",
"properties": {
"commandId": {
"description": "The idempotency handle (UUIDv7).",
"type": "string"
},
"sessionId": {
"description": "The target session.",
"type": "string"
},
"taskId": {
"description": "The task to stop, the `toolCall` item's `itemId`.",
"type": "string"
}
},
"required": [
"commandId",
"sessionId",
"taskId"
],
"type": "object"
}