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

69 lines 1.74 kB
/** * Dashboard Tools * Lovelace dashboard generation and management */ export declare const dashboardTools: ({ name: string; description: string; inputSchema: { type: string; properties: { dashboard_config?: undefined; create_backup?: undefined; filename?: undefined; register_dashboard?: undefined; remove_from_config?: undefined; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: string; properties: { dashboard_config: { type: string; description: string; }; create_backup: { type: string; description: string; }; filename: { type: string; description: string; }; register_dashboard: { type: string; description: string; }; remove_from_config?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { filename: { type: string; description: string; }; remove_from_config: { type: string; description: string; }; create_backup: { type: string; description: string; }; dashboard_config?: undefined; register_dashboard?: undefined; }; required: string[]; }; })[]; //# sourceMappingURL=dashboard.d.ts.map