robovac_start_cleaning
Initiate a cleaning cycle for your Eufy RoboVac vacuum cleaner to clean floors automatically.
Instructions
Start the robovac cleaning cycle
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:579-589 (handler)Handler for robovac_start_cleaning tool: Ensures RoboVac is initialized and calls startCleaning() method.case "robovac_start_cleaning": this.ensureRoboVacInitialized(); await this.robovac!.startCleaning(); return { content: [ { type: "text", text: "RoboVac cleaning started!", }, ], };
- src/server.ts:344-351 (registration)Registration of the robovac_start_cleaning tool in the listTools response, including name, description, and empty input schema.{ name: "robovac_start_cleaning", description: "Start the robovac cleaning cycle", inputSchema: { type: "object", properties: {}, }, },
- src/server.ts:347-350 (schema)Input schema for robovac_start_cleaning: empty object (no parameters).inputSchema: { type: "object", properties: {}, },