@boundless-oss/atlas
Version:
Atlas - MCP Server for comprehensive startup project management
26 lines (23 loc) • 687 B
text/typescript
import { ToolRegistration } from '../../core/types.js';
import { setupADRTools } from './tools.js';
/**
* ADR Management Module - 12-Factor MCP Implementation
*
* This module replaces the legacy ADR implementation
* with a 12-factor compliant version that uses:
*
* - Standardized tool interface
* - SQLite-based data storage
* - Schema validation
* - Structured outputs
* - Stateless execution
* - Relationship tracking and validation
*/
/**
* Setup the ADR management module
*/
export async function setupADRManagement(): Promise<ToolRegistration> {
return await setupADRTools();
}
// Export for backward compatibility
export { setupADRTools } from './tools.js';