Skip to main content
Glama

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
NameRequiredDescriptionDefault
scene_nameYesName of the scene to delete.

Implementation Reference

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

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