UNPKG

@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.

21 lines 731 B
/** * Central barrel file for easier imports * * Usage: * import { PersonaManager, GitHubClient, UpdateManager } from '@/index.barrel'; */ export * from './types/index.js'; export * from './config/constants.js'; export * from './config/indicator-config.js'; export * from './security/constants.js'; export * from './security/InputValidator.js'; export * from './utils/filesystem.js'; export * from './utils/git.js'; export * from './utils/version.js'; export * from './cache/APICache.js'; export * from './persona/index.js'; export * from './marketplace/index.js'; export * from './update/index.js'; export * from './server/index.js'; export { DollhouseMCPServer } from './index.js'; //# sourceMappingURL=index.barrel.d.ts.map