set_color
Adjust the hue and saturation of Nanoleaf smart lights directly through the MCP server. Specify hue (0-360) and saturation (0-100) values for precise color customization.
Instructions
Set the color of the Nanoleaf lights
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hue | Yes | Hue value (0-360) | |
saturation | Yes | Saturation value (0-100) |
Input Schema (JSON Schema)
{
"properties": {
"hue": {
"description": "Hue value (0-360)",
"maximum": 360,
"minimum": 0,
"type": "number"
},
"saturation": {
"description": "Saturation value (0-100)",
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"hue",
"saturation"
],
"type": "object"
}