fibaro_control_rgb_light
Control RGB lights with one command, including on/off, color, and brightness settings. Simplifies management of smart lighting through the Fibaro HC3 MCP Server.
Instructions
Complete control for RGB lights: turn on/off, set color, and brightness in one command. Use this when user wants to control multiple aspects of an RGB light at once (e.g., "turn on light 5 red color at 50% brightness").
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Turn light on or off | |
brightness | No | Brightness level (0-100), optional | |
color_name | No | Color name (e.g., "red", "green", "blue", "xanh lá", "tím") | |
id | Yes | Device ID |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Turn light on or off",
"enum": [
"on",
"off"
],
"type": "string"
},
"brightness": {
"description": "Brightness level (0-100), optional",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"color_name": {
"description": "Color name (e.g., \"red\", \"green\", \"blue\", \"xanh lá\", \"tím\")",
"type": "string"
},
"id": {
"description": "Device ID",
"type": "number"
}
},
"required": [
"id",
"action"
],
"type": "object"
}