create_scene
Create a new empty scene in OBS Studio to organize your streaming or recording setup.
Instructions
Create a new empty scene in OBS.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene_name | Yes | Name for the new scene. |
Implementation Reference
- obs-mcp-server.js:539-542 (handler)The handler for 'create_scene' which calls the OBS 'CreateScene' method.
case "create_scene": { await obs.call("CreateScene", { sceneName: args.scene_name }); return ok({ created: args.scene_name }); } - obs-mcp-server.js:232-240 (registration)Tool registration for 'create_scene'.
name: "create_scene", description: "Create a new empty scene in OBS.", inputSchema: { type: "object", properties: { scene_name: { type: "string", description: "Name for the new scene.", },