@boundless-oss/atlas
Version:
Atlas - MCP Server for comprehensive startup project management
23 lines • 737 B
JavaScript
import { setupPerformanceMonitoringTools } from './tools.js';
/**
* Performance Monitoring Module - 12-Factor MCP Implementation
*
* This module replaces the legacy performance-monitoring implementation
* with a 12-factor compliant version that uses:
*
* - Standardized tool interface
* - SQLite-based data storage
* - Schema validation
* - Structured outputs
* - Stateless execution
* - Real-time performance tracking and alerting
*/
/**
* Setup the performance monitoring module
*/
export async function setupPerformanceMonitoring() {
return await setupPerformanceMonitoringTools();
}
// Export for backward compatibility
export { setupPerformanceMonitoringTools } from './tools.js';
//# sourceMappingURL=index.js.map