set_scene
Switch OBS Studio to a different scene by specifying the exact scene name, enabling control of your streaming or recording setup.
Instructions
Switch OBS to a different scene.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene_name | Yes | Exact name of the scene to switch to. |
Implementation Reference
- obs-mcp-server.js:393-398 (handler)The 'set_scene' handler implementation, which calls OBSWebSocket's 'SetCurrentProgramScene'.
case "set_scene": { await obs.call("SetCurrentProgramScene", { sceneName: args.scene_name, }); return ok({ switched_to: args.scene_name }); } - obs-mcp-server.js:64-77 (schema)The 'set_scene' tool definition and schema definition.
{ name: "set_scene", description: "Switch OBS to a different scene.", inputSchema: { type: "object", properties: { scene_name: { type: "string", description: "Exact name of the scene to switch to.", }, }, required: ["scene_name"], }, },