OpenHue MCP Server

activate-scene

Activate a specific scene

Input Schema

NameRequiredDescriptionDefault
modeNoOptional scene mode
nameYesScene name or ID
roomNoOptional room name for the scene

Input Schema (JSON Schema)

{ "properties": { "mode": { "description": "Optional scene mode", "enum": [ "active", "dynamic", "static" ], "type": "string" }, "name": { "description": "Scene name or ID", "type": "string" }, "room": { "description": "Optional room name for the scene", "type": "string" } }, "required": [ "name" ], "type": "object" }