Skip to main content
Glama
appleton

Eufy RoboVac MCP Server

by appleton

robovac_stop_cleaning

Stop the Eufy RoboVac cleaning cycle to pause or end vacuuming sessions when needed.

Instructions

Stop the robovac cleaning cycle

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'robovac_stop_cleaning' tool. It ensures the RoboVac is initialized and calls pause() on the RoboVac instance to stop cleaning.
    case "robovac_stop_cleaning":
      this.ensureRoboVacInitialized();
      await this.robovac!.pause();
      return {
        content: [
          {
            type: "text",
            text: "RoboVac cleaning stopped!",
          },
        ],
      };
  • src/server.ts:352-359 (registration)
    Registration of the 'robovac_stop_cleaning' tool in the listTools response, including name, description, and empty input schema.
    {
      name: "robovac_stop_cleaning",
      description: "Stop the robovac cleaning cycle",
      inputSchema: {
        type: "object",
        properties: {},
      },
    },
  • Input schema for the 'robovac_stop_cleaning' tool, which requires 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