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.

31 lines 814 B
/** * Server setup and initialization */ import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { ToolRegistry } from './tools/ToolRegistry.js'; import { IToolHandler } from './types.js'; export declare class ServerSetup { private toolRegistry; constructor(); /** * Initialize the server with all tools and handlers */ setupServer(server: Server, instance: IToolHandler): void; /** * Register all tool categories */ private registerTools; /** * Setup the ListToolsRequest handler */ private setupListToolsHandler; /** * Setup the CallToolRequest handler */ private setupCallToolHandler; /** * Get the tool registry */ getToolRegistry(): ToolRegistry; } //# sourceMappingURL=ServerSetup.d.ts.map