create_scene_collection
Create a new scene collection in OBS Studio to organize and manage different sets of scenes for various streaming or recording scenarios.
Instructions
Create a new scene collection (starts empty).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_name | Yes | Name for the new scene collection. |
Implementation Reference
- obs-mcp-server.js:574-579 (handler)Handler implementation for "create_scene_collection" tool. It calls the OBS "CreateSceneCollection" command with the provided collection name.
case "create_scene_collection": { await obs.call("CreateSceneCollection", { sceneCollectionName: args.collection_name, }); return ok({ created_collection: args.collection_name }); } - obs-mcp-server.js:298-310 (schema)Schema registration for "create_scene_collection" tool, defining the input parameter `collection_name`.
{ name: "create_scene_collection", description: "Create a new scene collection (starts empty).", inputSchema: { type: "object", properties: { collection_name: { type: "string", description: "Name for the new scene collection.", }, }, required: ["collection_name"], },