UNPKG

@iflow-mcp/coolver-home-assistant-mcp

Version:

Enable Cursor, VS Code, Claude Code or any MCP-enabled IDE to help you vibecode and manage Home Assistant: create automations, design dashboards, tweak themes, modify configs, and deploy changes using natural language

50 lines 1.12 kB
/** * System Operation Tools * Configuration validation, reload, restart, logs */ export declare const systemTools: ({ name: string; description: string; inputSchema: { type: string; properties: { component?: undefined; limit?: undefined; level?: undefined; }; }; } | { name: string; description: string; inputSchema: { type: string; properties: { component: { type: string; description: string; enum: string[]; }; limit?: undefined; level?: undefined; }; }; } | { name: string; description: string; inputSchema: { type: string; properties: { limit: { type: string; description: string; }; level: { type: string; description: string; enum: string[]; }; component?: undefined; }; }; })[]; //# sourceMappingURL=system.d.ts.map