GetSceneItemList
Retrieve a list of scene items (sources) from a specified OBS scene to manage and automate streaming production with Presentation Buddy MCP Server.
Instructions
Gets the list of scene items (sources) in a specified 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": {
"sceneName": {
"description": "Name of the scene to get items from.",
"type": "string"
}
},
"required": [
"sceneName"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}