rename_scene
Change the name of an existing OBS Studio scene to update your streaming or recording setup.
Instructions
Rename an existing scene.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene_name | Yes | Current name of the scene. | |
| new_name | Yes | New name for the scene. |
Implementation Reference
- obs-mcp-server.js:549-555 (handler)The 'rename_scene' tool handler invokes the OBS 'SetSceneName' method with the provided scene name and new name.
case "rename_scene": { await obs.call("SetSceneName", { sceneName: args.scene_name, newSceneName: args.new_name, }); return ok({ renamed: { from: args.scene_name, to: args.new_name } }); } - obs-mcp-server.js:259-276 (schema)The 'rename_scene' tool input schema definition, which requires 'scene_name' and 'new_name'.
{ name: "rename_scene", description: "Rename an existing scene.", inputSchema: { type: "object", properties: { scene_name: { type: "string", description: "Current name of the scene.", }, new_name: { type: "string", description: "New name for the scene.", }, }, required: ["scene_name", "new_name"], }, },