@gork-labs/secondbrain-mcp
Version:
Second Brain MCP Server - Agent team orchestration with dynamic tool discovery
19 lines (18 loc) • 599 B
TypeScript
export interface SecondBrainConfig {
sessionStorePath: string;
maxTotalCalls: number;
maxRefinementIterations: number;
maxParallelAgents: number;
maxDepth: number;
sessionTimeoutMinutes: number;
subagentsPath: string;
mcpConfigPath: string;
openrouterApiKey: string;
model: string;
qualityThreshold: number;
enableQualityValidation: boolean;
logLevel: 'debug' | 'info' | 'warn' | 'error';
enableStructuredLogging: boolean;
}
export declare const config: SecondBrainConfig;
export declare function validateConfig(cfg: SecondBrainConfig): void;