set_scene_collection
Switch OBS Studio scene collections to reload scenes and change production setups. Specify the exact collection name to transition between different scene configurations.
Instructions
Switch to a different scene collection. OBS will reload its scenes.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_name | Yes | Exact name of the scene collection to switch to. |
Implementation Reference
- obs-mcp-server.js:567-572 (handler)Handler function for the set_scene_collection tool which calls the OBS WebSocket 'SetCurrentSceneCollection' method.
case "set_scene_collection": { await obs.call("SetCurrentSceneCollection", { sceneCollectionName: args.collection_name, }); return ok({ switched_to_collection: args.collection_name }); } - obs-mcp-server.js:284-296 (schema)Input schema definition for the set_scene_collection tool.
{ name: "set_scene_collection", description: "Switch to a different scene collection. OBS will reload its scenes.", inputSchema: { type: "object", properties: { collection_name: { type: "string", description: "Exact name of the scene collection to switch to.", }, }, required: ["collection_name"], },