@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.
20 lines • 452 B
TypeScript
/**
* Debug tools for retrieving server logs
*/
export interface GetLogsArgs {
count?: number;
level?: 'debug' | 'info' | 'warn' | 'error';
}
export declare function getServerLogs(args: GetLogsArgs): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function clearServerLogs(): Promise<{
content: {
type: string;
text: string;
}[];
}>;
//# sourceMappingURL=debug.d.ts.map