UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

23 lines 633 B
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() { return await setupADRTools(); } // Export for backward compatibility export { setupADRTools } from './tools.js'; //# sourceMappingURL=index.js.map