/** * MCP Analyze Tools * * Tools for analyzing features and detecting tech stacks. */ import type { ToolDefinition } from './index.js'; /** * Register analyze tools */ export declare function registerAnalyzeTools(): ToolDefinition[]; /** * Handle analyze tool calls */ export declare function handleAnalyzeTool(name: string, args: Record): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=analyze.d.ts.map