UNPKG

@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 476 B
/** * Default personas that ship with DollhouseMCP */ export declare const DEFAULT_PERSONAS: readonly ["business-consultant.md", "creative-writer.md", "debug-detective.md", "eli5-explainer.md", "excel-expert.md", "technical-analyst.md"]; export type DefaultPersonaFilename = typeof DEFAULT_PERSONAS[number]; /** * Check if a filename is a default persona */ export declare function isDefaultPersona(filename: string): boolean; //# sourceMappingURL=defaultPersonas.d.ts.map