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.

28 lines 757 B
import { IElement, IElementMetadata } from './elements/IElement.js'; export interface PersonaMetadata extends IElementMetadata { name: string; description: string; unique_id?: string; filename?: string; triggers?: string[]; version?: string; author?: string; category?: string; age_rating?: string; price?: string; ai_generated?: boolean; generation_method?: string; license?: string; created_date?: string; content_flags?: string[]; revenue_split?: string; instructions?: string; } export interface Persona extends IElement { metadata: PersonaMetadata; instructions: string; content: string; filename: string; unique_id: string; } //# sourceMappingURL=persona.d.ts.map