Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vibrai.com/llms.txt

Use this file to discover all available pages before exploring further.

Create, rename, delete, and list session scenes.

Command line

scene list

List all scenes
vibrai scene list

scene create

Create a new scene
vibrai scene create --at <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
vibrai scene delete <scene>
scene
required
Scene number to delete (1-based: 1, 2, … or first, second, …)

scene rename

Rename a scene by its index
vibrai scene rename <scene> <name>
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).
{
  "tool": "list_scenes",
  "arguments": {}
}

set_scene_name

Rename the scene at the given index.
{
  "tool": "set_scene_name",
  "arguments": {
    "scene_index": "<String>",
    "name": "<String>"
  }
}
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.
{
  "tool": "create_scene",
  "arguments": {
    "insert_index": "<String>"
  }
}
insert_index
String
required
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.
{
  "tool": "delete_scene",
  "arguments": {
    "scene_index": "<String>"
  }
}
scene_index
String
required
Scene number to delete (1-based: 1, 2, … or ‘first’, ‘second’, …)