/** * Merlin Lite Tools * Tools for zero-friction adoption - auto-init for new projects */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { MerlinClient } from '../api/client.js'; export interface LiteToolContext { server: McpServer; client: MerlinClient; getAuthToken: () => string | null; } export declare function registerLiteTools(ctx: LiteToolContext): void; /** * Auto-detect new project and suggest Merlin Lite initialization * Called during MCP startup */ export declare function checkAndSuggestLiteInit(token: string): Promise<{ isNewProject: boolean; shouldInit: boolean; repoUrl?: string; repoName?: string; }>; //# sourceMappingURL=lite.d.ts.map