Skip to main content
Glama
appleton
by appleton

robovac_find_robot

Activate audible beeping on your Eufy RoboVac to locate it when lost or misplaced.

Instructions

Make the robovac beep to help locate it

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enableNoWhether to enable or disable find robot mode

Implementation Reference

  • Handler implementation for the robovac_find_robot tool. Ensures the RoboVac is connected, sets the find robot mode using the library's setFindRobot method with optional enable parameter (defaults to true), and returns a textual confirmation.
    case "robovac_find_robot": this.ensureRoboVacInitialized(); const enableFind = args?.enable !== undefined ? (args?.enable as boolean) : true; await this.robovac!.setFindRobot(enableFind); return { content: [ { type: "text", text: enableFind ? "Find robot enabled - RoboVac should be beeping!" : "Find robot disabled", }, ], };
  • src/server.ts:165-178 (registration)
    Tool registration in the ListTools handler, defining the name, description, and input schema (object with optional boolean 'enable' property defaulting to true).
    { name: "robovac_find_robot", description: "Make the robovac beep to help locate it", inputSchema: { type: "object", properties: { enable: { type: "boolean", description: "Whether to enable or disable find robot mode", default: true, }, }, }, },

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