UNPKG

@mickdarling/dollhousemcp

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.

10 lines 318 B
/** * Configuration-related tool definitions and handlers */ import { ToolDefinition } from './ToolRegistry.js'; import { IToolHandler } from '../types.js'; export declare function getConfigTools(server: IToolHandler): Array<{ tool: ToolDefinition; handler: any; }>; //# sourceMappingURL=ConfigTools.d.ts.map