UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

26 lines (23 loc) 670 B
import { ToolRegistration } from '../../core/types.js'; 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(): Promise<ToolRegistration> { return await setupKanbanTools(); } // Export for backward compatibility export { setupKanbanTools } from './tools.js';