/** * MCP Tool Definitions * * Defines the tools that soleil-ai-review-engine exposes to external AI agents. * All tools support an optional `repo` parameter for multi-repo setups. */ export interface ToolDefinition { name: string; description: string; inputSchema: { type: 'object'; properties: Record; required: string[]; }; } export declare const SOLEIL_AI_REVIEW_ENGINE_TOOLS: ToolDefinition[];