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.

16 lines 619 B
/** * Configuration and sync tool definitions for unified management */ import { ToolDefinition } from '../../handlers/types/ToolTypes.js'; import type { ConfigHandler } from '../../handlers/ConfigHandler.js'; import type { SyncHandler } from '../../handlers/SyncHandlerV2.js'; type ConfigToolsHandler = { handleConfigOperation: ConfigHandler['handleConfigOperation']; handleSyncOperation: SyncHandler['handleSyncOperation']; }; export declare function getConfigToolsV2(server: ConfigToolsHandler): Array<{ tool: ToolDefinition; handler: any; }>; export {}; //# sourceMappingURL=ConfigToolsV2.d.ts.map