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

53 lines 1.16 kB
/** * File Operation Tools */ export declare const fileTools: ({ name: string; description: string; inputSchema: { type: string; properties: { path: { type: string; description: string; }; content?: undefined; directory?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { path: { type: string; description: string; }; content: { type: string; description: string; }; directory?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { directory: { type: string; description: string; }; path?: undefined; content?: undefined; }; required?: undefined; }; })[]; //# sourceMappingURL=files.d.ts.map