UNPKG

@dollhousemcp/mcp-server

Version:

DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.

19 lines 830 B
/** * 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<T> = (args: T) => Promise<any>; export declare function getEnhancedIndexTools(server: EnhancedIndexHandler, config: IndexConfiguration): Array<{ tool: ToolDefinition; handler: ToolHandler<any>; }>; export {}; //# sourceMappingURL=EnhancedIndexTools.d.ts.map