robovac_return_home
Send your Eufy RoboVac back to its charging dock to recharge after cleaning sessions.
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 implementation for the robovac_return_home tool. Ensures RoboVac is initialized and calls goHome() method on the RoboVac instance, returning a success message.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 the ListTools response, defining name, description, and empty input schema.{ name: "robovac_return_home", description: "Send the robovac back to its charging dock", inputSchema: { type: "object", properties: {}, }, },