list_scene_collections
Retrieve all available scene collections and identify the currently active one in OBS Studio.
Instructions
List all scene collections and show which one is active.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:558-565 (handler)The handler for 'list_scene_collections' which fetches the list of scene collections from OBS.
case "list_scene_collections": { const { sceneCollections, currentSceneCollectionName } = await obs.call("GetSceneCollectionList"); return ok({ current_collection: currentSceneCollectionName, collections: sceneCollections, }); } - obs-mcp-server.js:279-283 (registration)The registration of the 'list_scene_collections' tool with its schema definition.
{ name: "list_scene_collections", description: "List all scene collections and show which one is active.", inputSchema: { type: "object", properties: {} }, },