Skip to main content
Glama

create_scene_collection

Create a new scene collection in OBS Studio to organize and manage different sets of scenes for various streaming or recording scenarios.

Instructions

Create a new scene collection (starts empty).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collection_nameYesName for the new scene collection.

Implementation Reference

  • Handler implementation for "create_scene_collection" tool. It calls the OBS "CreateSceneCollection" command with the provided collection name.
    case "create_scene_collection": {
      await obs.call("CreateSceneCollection", {
        sceneCollectionName: args.collection_name,
      });
      return ok({ created_collection: args.collection_name });
    }
  • Schema registration for "create_scene_collection" tool, defining the input parameter `collection_name`.
    {
      name: "create_scene_collection",
      description: "Create a new scene collection (starts empty).",
      inputSchema: {
        type: "object",
        properties: {
          collection_name: {
            type: "string",
            description: "Name for the new scene collection.",
          },
        },
        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