#!/usr/bin/env node /** * BCKB MCP Server * * Business Central Knowledge Base Model Context Protocol Server * Surfaces atomic BC knowledge topics for intelligent AI consumption * via GitHub Copilot, Claude, and other LLM tools. */ declare class BCKBServer { private server; private knowledgeService; private codeAnalysisService; private methodologyService; private workflowService; private layerService; private configuration; private configLoader; private getPackageVersion; constructor(); private setupToolHandlers; /** * Setup prompts for workflow pipelines */ private setupPrompts; /** * Initialize all services with configuration */ private initializeServices; /** * Validate that all tool schemas match service implementations */ private validateToolContracts; /** * Generate comprehensive system analytics */ private generateSystemAnalytics; /** * Generate topic distribution and coverage analytics */ private generateTopicAnalytics; /** * Generate layer performance analytics */ private generateLayerPerformanceAnalytics; /** * Generate configuration optimization insights */ private generateConfigurationInsights; private generateOptimizationWorkflow; run(): Promise; /** * Get configuration quality score for startup diagnostics */ private getConfigurationQuality; } export { BCKBServer }; //# sourceMappingURL=index.d.ts.map