Skip to main content
Glama

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
NameRequiredDescriptionDefault
scene_nameYesCurrent name of the scene.
new_nameYesNew name for the scene.

Implementation Reference

  • 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 } });
    }
  • 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"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/LarsCanGit/OBS-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server