Skip to main content
Glama

set_profile

Switch OBS Studio profiles to change stream settings and encoder configurations using the obs-mcp-server.

Instructions

Switch to a different OBS profile (stream settings, encoder config, etc.).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profile_nameYesExact name of the profile to switch to.

Implementation Reference

  • The handler logic for the "set_profile" tool which calls the OBS "SetCurrentProfile" method.
    case "set_profile": {
      await obs.call("SetCurrentProfile", {
        profileName: args.profile_name,
      });
      return ok({ switched_to_profile: args.profile_name });
    }
  • The registration and input schema definition for the "set_profile" tool.
    name: "set_profile",
    description: "Switch to a different OBS profile (stream settings, encoder config, etc.).",
    inputSchema: {
      type: "object",
      properties: {
        profile_name: {
          type: "string",
          description: "Exact name of the profile to switch to.",
        },
      },
      required: ["profile_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