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.

23 lines 478 B
/** * Type definitions for collection functionality */ export interface CollectionContent { name: string; path: string; sha: string; size: number; download_url: string; html_url: string; } export interface CollectionSearchResult { path: string; html_url: string; repository: { full_name: string; }; text_matches?: Array<{ fragment: string; property: string; }>; } //# sourceMappingURL=collection.d.ts.map