@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.
12 lines • 556 B
TypeScript
/**
* Persona export/import tool definitions and handlers
* Note: Core persona management functionality (list, activate, create, edit, etc.)
* is now available through the generic element tools (list_elements, activate_element, etc.)
*/
import { ToolDefinition } from '../../handlers/types/ToolTypes.js';
import type { PersonaHandler } from '../../handlers/PersonaHandler.js';
export declare function getPersonaExportImportTools(server: PersonaHandler): Array<{
tool: ToolDefinition;
handler: any;
}>;
//# sourceMappingURL=PersonaTools.d.ts.map