list_profiles
Retrieve all OBS Studio profiles and identify the currently active one for managing broadcast configurations.
Instructions
List all OBS profiles and show which one is active.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:582-589 (handler)The handler for "list_profiles" calls the OBS "GetProfileList" command and returns the current profile and the list of available profiles.
case "list_profiles": { const { profiles, currentProfileName } = await obs.call("GetProfileList"); return ok({ current_profile: currentProfileName, profiles, }); } - obs-mcp-server.js:314-318 (registration)The tool registration for "list_profiles" including its description and input schema.
{ name: "list_profiles", description: "List all OBS profiles and show which one is active.", inputSchema: { type: "object", properties: {} }, },