remove_scene
Delete scenes from OBS Studio to manage your streaming or recording setup. Specify the scene name to remove it, but note that currently active scenes cannot be deleted.
Instructions
Delete a scene from OBS. Cannot remove the currently active scene.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene_name | Yes | Name of the scene to delete. |
Implementation Reference
- obs-mcp-server.js:544-547 (handler)The handler logic for the 'remove_scene' tool, which calls the OBS 'RemoveScene' command.
case "remove_scene": { await obs.call("RemoveScene", { sceneName: args.scene_name }); return ok({ removed: args.scene_name }); } - obs-mcp-server.js:246-255 (registration)The registration of the 'remove_scene' tool within the MCP server.
name: "remove_scene", description: "Delete a scene from OBS. Cannot remove the currently active scene.", inputSchema: { type: "object", properties: { scene_name: { type: "string", description: "Name of the scene to delete.", }, },