UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

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