robovac_connect_discovered
Connect to an Eufy RoboVac device by IP using its device ID and local key for remote control and management via the Eufy RoboVac MCP Server.
Instructions
Connect to a discovered RoboVac device by IP (requires device ID and local key)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | Yes | The device ID of your Eufy RoboVac | |
ip | Yes | IP address of the discovered device | |
localKey | Yes | The local key for your Eufy RoboVac |
Input Schema (JSON Schema)
{
"properties": {
"deviceId": {
"description": "The device ID of your Eufy RoboVac",
"type": "string"
},
"ip": {
"description": "IP address of the discovered device",
"type": "string"
},
"localKey": {
"description": "The local key for your Eufy RoboVac",
"type": "string"
}
},
"required": [
"ip",
"deviceId",
"localKey"
],
"type": "object"
}