waroom_update_incident_labels
Assign or update labels to specific incidents on the Waroom MCP server using incident and label UUIDs for organized tracking and management.
Instructions
インシデントにラベルを付与または更新します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
incident_uuid | Yes | 対象インシデントのUUID | |
label_uuids | Yes | 付与するラベルのUUID配列 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"incident_uuid": {
"description": "対象インシデントのUUID",
"format": "uuid",
"type": "string"
},
"label_uuids": {
"description": "付与するラベルのUUID配列",
"items": {
"format": "uuid",
"type": "string"
},
"type": "array"
}
},
"required": [
"incident_uuid",
"label_uuids"
],
"type": "object"
}