UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

26 lines (23 loc) 708 B
import { ToolRegistration } from '../../core/types.js'; import { setupDevelopmentTools } from './tools.js'; /** * Development Module - 12-Factor MCP Implementation * * This module replaces the legacy development implementation * with a 12-factor compliant version that uses: * * - Standardized tool interface * - SQLite-based data storage * - Schema validation * - Structured outputs * - Stateless execution * - Test-Driven Development enforcement */ /** * Setup the development module */ export async function setupDevelopment(): Promise<ToolRegistration> { return await setupDevelopmentTools(); } // Export for backward compatibility export { setupDevelopmentTools } from './tools.js';