reorder_cues
Assign new cue numbers to multiple cues in a cue list on LacyLights MCP Server, enabling precise reordering for theatrical lighting design.
Instructions
Reorder multiple cues by assigning new cue numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cueListId | Yes | Cue list ID containing the cues | |
cueReordering | Yes | Array of cue ID and new number pairs |
Input Schema (JSON Schema)
{
"properties": {
"cueListId": {
"description": "Cue list ID containing the cues",
"type": "string"
},
"cueReordering": {
"description": "Array of cue ID and new number pairs",
"items": {
"properties": {
"cueId": {
"description": "ID of the cue to reorder",
"type": "string"
},
"newCueNumber": {
"description": "New cue number for this cue",
"type": "number"
}
},
"required": [
"cueId",
"newCueNumber"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"cueListId",
"cueReordering"
],
"type": "object"
}