led
Control LED state (on/off) through MCP2TCP server, enabling natural language commands to manage TCP devices directly from AI models.
Instructions
打开LED (state=on)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
state | Yes | Parameter state for the led command |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"state": {
"description": "Parameter state for the led command",
"examples": [
"设置LED状态为value (on或off)"
],
"type": "string"
}
},
"required": [
"state"
],
"type": "object"
}