robovac_find_robot
Activate audible beeping on your Eufy RoboVac to locate it when lost or misplaced.
Instructions
Make the robovac beep to help locate it
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| enable | No | Whether to enable or disable find robot mode |
Implementation Reference
- src/server.ts:687-701 (handler)Handler implementation for the robovac_find_robot tool. Ensures the RoboVac is connected, sets the find robot mode using the library's setFindRobot method with optional enable parameter (defaults to true), and returns a textual confirmation.case "robovac_find_robot": this.ensureRoboVacInitialized(); const enableFind = args?.enable !== undefined ? (args?.enable as boolean) : true; await this.robovac!.setFindRobot(enableFind); return { content: [ { type: "text", text: enableFind ? "Find robot enabled - RoboVac should be beeping!" : "Find robot disabled", }, ], };
- src/server.ts:165-178 (registration)Tool registration in the ListTools handler, defining the name, description, and input schema (object with optional boolean 'enable' property defaulting to true).{ name: "robovac_find_robot", description: "Make the robovac beep to help locate it", inputSchema: { type: "object", properties: { enable: { type: "boolean", description: "Whether to enable or disable find robot mode", default: true, }, }, }, },