@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.
11 lines • 431 B
TypeScript
/**
* Element-related tool definitions and handlers
* Provides generic tools that work with all element types
*/
import { ToolDefinition } from '../../handlers/types/ToolTypes.js';
import type { ElementCRUDHandler } from '../../handlers/ElementCRUDHandler.js';
export declare function getElementTools(server: ElementCRUDHandler): Array<{
tool: ToolDefinition;
handler: any;
}>;
//# sourceMappingURL=ElementTools.d.ts.map