UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

26 lines (23 loc) 734 B
import { ToolRegistration } from '../../core/types.js'; import { setupDataManagementTools } from './tools.js'; /** * Data Management Module - 12-Factor MCP Implementation * * This module replaces the legacy data-management implementation * with a 12-factor compliant version that uses: * * - Standardized tool interface * - SQLite-based data storage * - Schema validation * - Structured outputs * - Stateless execution * - Human approval workflows where needed */ /** * Setup the data management module */ export async function setupDataManagement(): Promise<ToolRegistration> { return await setupDataManagementTools(); } // Export for backward compatibility export { setupDataManagementTools } from './tools.js';