/** * MCP Tool Definitions * * Defines the tools that GitNexus exposes to external AI agents. * Each tool has a rich description with examples to help agents use them correctly. */ export interface ToolDefinition { name: string; description: string; inputSchema: { type: 'object'; properties: Record; required: string[]; }; } export declare const GITNEXUS_TOOLS: ToolDefinition[]; //# sourceMappingURL=tools.d.ts.map