UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

23 lines 618 B
import { setupKanbanTools } from './tools.js'; /** * Kanban Module - 12-Factor MCP Implementation * * This module replaces the legacy kanban implementation * with a 12-factor compliant version that uses: * * - Standardized tool interface * - SQLite-based data storage * - Schema validation * - Structured outputs * - Stateless execution * - Real-time analytics and insights */ /** * Setup the kanban module */ export async function setupKanban() { return await setupKanbanTools(); } // Export for backward compatibility export { setupKanbanTools } from './tools.js'; //# sourceMappingURL=index.js.map