Skip to main content
Glama
appleton

Eufy RoboVac MCP Server

by appleton

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {},
      },
    },
  • Input schema for robovac_start_cleaning: empty object (no parameters).
    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