Skip to main content
Create, rename, delete, and list session scenes.

Command line

scene list

List all scenes

scene create

Create a new scene
--at
Optional scene number to insert at (1-based: 1, 2, … or first, second, …); omit to append.

scene delete

Delete a scene by its index
scene
required
Scene number to delete (1-based: 1, 2, … or first, second, …)

scene rename

Rename a scene by its index
scene
required
Scene number to rename (1-based: 1, 2, … or first, second, …)
name
required
New scene name

MCP tools

list_scenes

List all scenes in the current Live set. Returned in order (1-based). Each entry has an index and a name (empty string if unnamed).

set_scene_name

Rename the scene at the given index.
scene_index
String
required
Scene number (1-based: 1, 2, … or ‘first’, ‘second’, …)
name
String
required
New scene name

create_scene

Create a new scene. Omit insert_index to append at the end.
insert_index
String
Optional scene number to insert at (1-based: 1, 2, … or ‘first’, ‘second’, …); omit to append at the end.

delete_scene

Delete a scene by its index. Idempotent: out-of-range and last-remaining-scene are no-ops.
scene_index
String
required
Scene number to delete (1-based: 1, 2, … or ‘first’, ‘second’, …)