robovac_return_home
Command your Eufy RoboVac to return to its charging dock using this tool. Easily manage cleaning tasks and ensure the device is charged and ready for use.
Instructions
Send the robovac back to its charging dock
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:603-613 (handler)Handler for the robovac_return_home tool. Ensures RoboVac is initialized and calls goHome() on the instance to return it to the charging dock.case "robovac_return_home": this.ensureRoboVacInitialized(); await this.robovac!.goHome(); return { content: [ { type: "text", text: "RoboVac returning to charging dock!", }, ], };
- src/server.ts:360-367 (registration)Tool registration in listTools handler, defining name, description, and input schema (empty object).{ name: "robovac_return_home", description: "Send the robovac back to its charging dock", inputSchema: { type: "object", properties: {}, }, },