robovac_play
Initiate or resume cleaning sessions with Eufy RoboVac vacuum cleaners using natural language commands through the MCP server for simplified device control.
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 logic for the 'robovac_play' tool. It ensures the RoboVac instance is initialized and calls the play() method to start or resume cleaning, returning a success message.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, including 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, which is an empty object (no input parameters needed).inputSchema: { type: "object", properties: {}, },