UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

23 lines 679 B
import { setupErrorAnalysisTools } from './tools.js'; /** * Error Analysis Module - 12-Factor MCP Implementation * * This module replaces the legacy error-analysis implementation * with a 12-factor compliant version that uses: * * - Standardized tool interface * - SQLite-based data storage * - Schema validation * - Structured outputs * - Stateless execution * - Comprehensive error tracking and analysis */ /** * Setup the error analysis module */ export async function setupErrorAnalysis() { return await setupErrorAnalysisTools(); } // Export for backward compatibility export { setupErrorAnalysisTools } from './tools.js'; //# sourceMappingURL=index.js.map