@mickdarling/dollhousemcp
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 • 482 B
TypeScript
/**
* Type definitions for marketplace functionality
*/
export interface MarketplacePersona {
name: string;
path: string;
sha: string;
size: number;
download_url: string;
html_url: string;
}
export interface MarketplaceSearchResult {
path: string;
html_url: string;
repository: {
full_name: string;
};
text_matches?: Array<{
fragment: string;
property: string;
}>;
}
//# sourceMappingURL=marketplace.d.ts.map