connect_to_ip
Establish a connection to a Nanoleaf device by specifying its IP address and port, enabling control and management of smart lighting features through the Nanoleaf MCP Server.
Instructions
Connect to a Nanoleaf device at a specific IP address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | IP address of the Nanoleaf device | |
port | No | Port number (default: 16021) |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"description": "IP address of the Nanoleaf device",
"type": "string"
},
"port": {
"default": 16021,
"description": "Port number (default: 16021)",
"type": "number"
}
},
"required": [
"ip"
],
"type": "object"
}