led_control
Control LED states (on/off) via the mcp2mqtt server. Integrates with IoT devices for natural language commands and real-time AI responses, enabling smart lighting management.
Instructions
控制LED开关
Input Schema
Name | Required | Description | Default |
---|---|---|---|
state | Yes | LED状态(on/off) |
Input Schema (JSON Schema)
{
"properties": {
"state": {
"description": "LED状态(on/off)",
"enum": [
"on",
"off"
],
"type": "string"
}
},
"required": [
"state"
],
"type": "object"
}