control-light
Turn Philips Hue lights on or off, adjust brightness, set color, or change temperature using the OpenHue MCP Server for precise light control.
Instructions
Control a specific Hue light
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Turn light on or off | |
brightness | No | Optional brightness level (0-100) | |
color | No | Optional color name (e.g., 'red', 'blue') | |
target | Yes | Light ID or name | |
temperature | No | Optional color temperature in Mirek |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Turn light 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 (e.g., 'red', 'blue')",
"type": "string"
},
"target": {
"description": "Light ID or name",
"type": "string"
},
"temperature": {
"description": "Optional color temperature in Mirek",
"maximum": 500,
"minimum": 153,
"type": "number"
}
},
"required": [
"target",
"action"
],
"type": "object"
}