robovac_set_clean_speed
Adjust the suction power of your Eufy RoboVac to match cleaning needs, choosing from STANDARD, BOOST_IQ, MAX, or NO_SUCTION modes.
Instructions
Set the suction speed of the robovac
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| speed | Yes | The cleaning speed to set |
Implementation Reference
- src/server.ts:651-661 (handler)Handler for robovac_set_clean_speed tool: ensures RoboVac is initialized, calls setCleanSpeed on the RoboVac instance with the speed argument cast to CleanSpeed type, and returns a success message.case "robovac_set_clean_speed": this.ensureRoboVacInitialized(); await this.robovac!.setCleanSpeed(args?.speed as CleanSpeed); return { content: [ { type: "text", text: `Clean speed set to: ${args?.speed}`, }, ], };
- src/server.ts:134-148 (registration)Registration of the robovac_set_clean_speed tool in the listTools response, including name, description, and input schema.{ name: "robovac_set_clean_speed", description: "Set the suction speed of the robovac", inputSchema: { type: "object", properties: { speed: { type: "string", description: "The cleaning speed to set", enum: ["STANDARD", "BOOST_IQ", "MAX", "NO_SUCTION"], }, }, required: ["speed"], }, },
- src/server.ts:137-147 (schema)Input schema for robovac_set_clean_speed defining the 'speed' parameter as a string enum with specific cleaning speed options.inputSchema: { type: "object", properties: { speed: { type: "string", description: "The cleaning speed to set", enum: ["STANDARD", "BOOST_IQ", "MAX", "NO_SUCTION"], }, }, required: ["speed"], },