@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.
10 lines • 378 B
TypeScript
/**
* Collection-related tool definitions and handlers
*/
import { ToolDefinition } from '../../handlers/types/ToolTypes.js';
import type { CollectionHandler } from '../../handlers/CollectionHandler.js';
export declare function getCollectionTools(server: CollectionHandler): Array<{
tool: ToolDefinition;
handler: any;
}>;
//# sourceMappingURL=CollectionTools.d.ts.map