Skip to main content
Glama
appleton

Eufy RoboVac MCP Server

by appleton

robovac_play

Start or resume cleaning with your Eufy RoboVac vacuum cleaner to maintain floor cleanliness.

Instructions

Start/resume robovac cleaning

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler implementation for the robovac_play tool. It ensures the RoboVac instance is initialized and calls the play() method on the RoboVac object to start or resume cleaning.
    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, defining its 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, specifying an empty object (no input parameters required).
    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