SwitchScene
Switch the OBS program scene automatically by specifying the scene name. Integrates with the Presentation Buddy MCP Server to streamline live production for solo creators.
Instructions
Switches the current OBS program scene.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"params": {
"additionalProperties": false,
"properties": {
"scene": {
"description": "Name of the scene to switch to.",
"type": "string"
}
},
"required": [
"scene"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}