Skip to main content
Glama
appleton
by appleton

robovac_get_all_statuses

Retrieve comprehensive status details from Eufy RoboVac in one operation, including cleaning mode, battery level, and schedule. Optionally force a refresh of cached data.

Instructions

Get all status information from the robovac at once

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
forceNoForce refresh of cached data

Implementation Reference

  • The handler function for the 'robovac_get_all_statuses' tool. It ensures the RoboVac is initialized, fetches all statuses using the library's getStatuses method (with optional force refresh), and returns a JSON-formatted string of the statuses.
    case "robovac_get_all_statuses": this.ensureRoboVacInitialized(); const allStatuses = await this.robovac!.getStatuses( args?.force as boolean ); return { content: [ { type: "text", text: `All RoboVac Statuses:\n${JSON.stringify( allStatuses, null, 2 )}`, }, ], };
  • src/server.ts:258-271 (registration)
    The tool registration in the ListTools handler, including name, description, and input schema for optional 'force' boolean parameter.
    { name: "robovac_get_all_statuses", description: "Get all status information from the robovac at once", inputSchema: { type: "object", properties: { force: { type: "boolean", description: "Force refresh of cached data", default: false, }, }, }, },
  • The input schema definition for the tool, specifying an optional 'force' boolean to refresh cached data.
    inputSchema: { type: "object", properties: { force: { type: "boolean", description: "Force refresh of cached data", default: false, }, }, },

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