update_cue
Modify properties of a theatrical lighting cue, including name, scene ID, fade timings, and notes, ensuring precise adjustments for LacyLights MCP Server's lighting design.
Instructions
Update properties of an existing cue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cueId | Yes | ID of the cue to update | |
cueNumber | No | New cue number | |
fadeInTime | No | New fade in time in seconds | |
fadeOutTime | No | New fade out time in seconds | |
followTime | No | New follow time (null to remove auto-follow) | |
name | No | New name for the cue | |
notes | No | New notes or description | |
sceneId | No | New scene ID |
Input Schema (JSON Schema)
{
"properties": {
"cueId": {
"description": "ID of the cue to update",
"type": "string"
},
"cueNumber": {
"description": "New cue number",
"type": "number"
},
"fadeInTime": {
"description": "New fade in time in seconds",
"type": "number"
},
"fadeOutTime": {
"description": "New fade out time in seconds",
"type": "number"
},
"followTime": {
"description": "New follow time (null to remove auto-follow)",
"type": "number"
},
"name": {
"description": "New name for the cue",
"type": "string"
},
"notes": {
"description": "New notes or description",
"type": "string"
},
"sceneId": {
"description": "New scene ID",
"type": "string"
}
},
"required": [
"cueId"
],
"type": "object"
}