OpenHue MCP Server

control-room

Control all lights in a room

Input Schema

NameRequiredDescriptionDefault
actionYesTurn room lights on or off
brightnessNoOptional brightness level (0-100)
colorNoOptional color name
targetYesRoom ID or name
temperatureNoOptional color temperature in Mirek

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Turn room lights on or off", "enum": [ "on", "off" ], "type": "string" }, "brightness": { "description": "Optional brightness level (0-100)", "maximum": 100, "minimum": 0, "type": "number" }, "color": { "description": "Optional color name", "type": "string" }, "target": { "description": "Room ID or name", "type": "string" }, "temperature": { "description": "Optional color temperature in Mirek", "maximum": 500, "minimum": 153, "type": "number" } }, "required": [ "target", "action" ], "type": "object" }