/** * Enhanced Index tool definitions and handlers * * Provides MCP tools for accessing semantic relationships, similarity search, * and verb-based discovery features of the Enhanced Capability Index. * * FIXES IMPLEMENTED (Issue #1100): * - Uses configuration for default values instead of hardcoded numbers */ import { ToolDefinition } from '../../handlers/types/ToolTypes.js'; import { IndexConfiguration } from '../../portfolio/config/IndexConfig.js'; import type { EnhancedIndexHandler } from '../../handlers/EnhancedIndexHandler.js'; type ToolHandler = (args: T) => Promise; export declare function getEnhancedIndexTools(server: EnhancedIndexHandler, config: IndexConfiguration): Array<{ tool: ToolDefinition; handler: ToolHandler; }>; export {}; //# sourceMappingURL=EnhancedIndexTools.d.ts.map