create_profile
Create a new OBS Studio profile to organize scene collections, sources, and settings for different streaming or recording workflows.
Instructions
Create a new OBS profile.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile_name | Yes | Name for the new profile. |
Implementation Reference
- obs-mcp-server.js:598-601 (handler)The handler implementation for the create_profile tool, which calls the OBS CreateProfile method.
case "create_profile": { await obs.call("CreateProfile", { profileName: args.profile_name }); return ok({ created_profile: args.profile_name }); } - obs-mcp-server.js:334-342 (registration)The tool registration for create_profile, defining its schema and description.
name: "create_profile", description: "Create a new OBS profile.", inputSchema: { type: "object", properties: { profile_name: { type: "string", description: "Name for the new profile.", },