@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 • 560 B
TypeScript
/**
* Security-related constants and limits
*/
export declare const SECURITY_LIMITS: {
MAX_PERSONA_SIZE_BYTES: number;
MAX_FILENAME_LENGTH: number;
MAX_PATH_DEPTH: number;
MAX_CONTENT_LENGTH: number;
RATE_LIMIT_REQUESTS: number;
RATE_LIMIT_WINDOW_MS: number;
CACHE_TTL_MS: number;
MAX_SEARCH_RESULTS: number;
};
export declare const VALIDATION_PATTERNS: {
SAFE_FILENAME: RegExp;
SAFE_PATH: RegExp;
SAFE_USERNAME: RegExp;
SAFE_CATEGORY: RegExp;
SAFE_EMAIL: RegExp;
};
//# sourceMappingURL=constants.d.ts.map