Skip to main content
Glama
appleton
by appleton

robovac_get_work_status

Retrieve the current work status of your Eufy RoboVac, with an optional parameter to force a refresh of cached data for real-time accuracy.

Instructions

Get the current work status of the robovac

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
forceNoForce refresh of cached data

Implementation Reference

  • The handler logic for the 'robovac_get_work_status' tool. It ensures the RoboVac instance is initialized, calls getWorkStatus on the library instance with optional force refresh, and returns the status as a text response.
    case "robovac_get_work_status": this.ensureRoboVacInitialized(); const workStatus = await this.robovac!.getWorkStatus( args?.force as boolean ); return { content: [ { type: "text", text: `Work Status: ${workStatus}`, }, ], };
  • src/server.ts:221-234 (registration)
    Registration of the 'robovac_get_work_status' tool in the MCP server's listTools response, defining its name, description, and input schema (optional 'force' boolean parameter).
    { name: "robovac_get_work_status", description: "Get the current work status of the robovac", inputSchema: { type: "object", properties: { force: { type: "boolean", description: "Force refresh of cached data", default: false, }, }, }, },
  • Input schema definition for the 'robovac_get_work_status' 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