Skip to main content
Glama
appleton
by appleton

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
NameRequiredDescriptionDefault
speedYesThe cleaning speed to set

Implementation Reference

  • 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"], }, },
  • 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"], },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/appleton/sam'

If you have feedback or need assistance with the MCP directory API, please join our Discord server