robovac_play
Start or resume cleaning with your Eufy RoboVac vacuum cleaner to maintain floor cleanliness.
Instructions
Start/resume robovac cleaning
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:663-673 (handler)The handler implementation for the robovac_play tool. It ensures the RoboVac instance is initialized and calls the play() method on the RoboVac object to start or resume cleaning.case "robovac_play": this.ensureRoboVacInitialized(); await this.robovac!.play(); return { content: [ { type: "text", text: "RoboVac started/resumed cleaning!", }, ], };
- src/server.ts:149-156 (registration)Registration of the robovac_play tool in the ListTools response, defining its name, description, and empty input schema (no parameters required).{ name: "robovac_play", description: "Start/resume robovac cleaning", inputSchema: { type: "object", properties: {}, }, },
- src/server.ts:152-155 (schema)Input schema for the robovac_play tool, specifying an empty object (no input parameters required).inputSchema: { type: "object", properties: {}, },