Skip to main content
Glama

remove_profile

Delete OBS Studio profiles to manage your streaming setup. Specify a profile name to remove it from your configuration.

Instructions

Delete an OBS profile. Cannot remove the currently active profile.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profile_nameYesName of the profile to delete.

Implementation Reference

  • The handler function that executes the "remove_profile" tool by calling the OBS "RemoveProfile" command.
    case "remove_profile": {
      await obs.call("RemoveProfile", { profileName: args.profile_name });
      return ok({ removed_profile: args.profile_name });
    }
  • The registration and input schema definition for the "remove_profile" tool.
    {
      name: "remove_profile",
      description: "Delete an OBS profile. Cannot remove the currently active profile.",
      inputSchema: {
        type: "object",
        properties: {
          profile_name: {
            type: "string",
            description: "Name of the profile to delete.",
          },
        },
        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