Skip to main content
Glama

set_scene_collection

Switch OBS Studio scene collections to reload scenes and change production setups. Specify the exact collection name to transition between different scene configurations.

Instructions

Switch to a different scene collection. OBS will reload its scenes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collection_nameYesExact name of the scene collection to switch to.

Implementation Reference

  • Handler function for the set_scene_collection tool which calls the OBS WebSocket 'SetCurrentSceneCollection' method.
    case "set_scene_collection": {
      await obs.call("SetCurrentSceneCollection", {
        sceneCollectionName: args.collection_name,
      });
      return ok({ switched_to_collection: args.collection_name });
    }
  • Input schema definition for the set_scene_collection tool.
    {
      name: "set_scene_collection",
      description: "Switch to a different scene collection. OBS will reload its scenes.",
      inputSchema: {
        type: "object",
        properties: {
          collection_name: {
            type: "string",
            description: "Exact name of the scene collection to switch to.",
          },
        },
        required: ["collection_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