Skip to main content
Glama
appleton
by appleton

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {}, }, },
  • Input schema for the 'robovac_play' tool, which is an empty object (no input parameters needed).
    inputSchema: { type: "object", properties: {}, },

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