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.

22 lines 750 B
import type { ILogSink, LogCategory, LogQueryOptions, LogQueryResult, UnifiedLogEntry } from '../types.js'; export interface MemoryLogSinkOptions { appCapacity: number; securityCapacity: number; perfCapacity: number; telemetryCapacity: number; } export declare class MemoryLogSink implements ILogSink { private readonly queues; private readonly evictionCounts; constructor(options: MemoryLogSinkOptions); write(entry: UnifiedLogEntry): void; flush(): Promise<void>; close(): Promise<void>; query(options?: LogQueryOptions): LogQueryResult; getStats(): Record<LogCategory, { size: number; capacity: number; evictions: number; }>; } //# sourceMappingURL=MemoryLogSink.d.ts.map