@boundless-oss/atlas
Version:
Atlas - MCP Server for comprehensive startup project management
26 lines (23 loc) • 748 B
text/typescript
import { ToolRegistration } from '../../core/types.js';
import { setupBusinessGuidanceTools } from './tools.js';
/**
* Business Guidance Module - 12-Factor MCP Implementation
*
* This module replaces the legacy business-guidance 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 business guidance module
*/
export async function setupBusinessGuidance(): Promise<ToolRegistration> {
return await setupBusinessGuidanceTools();
}
// Export for backward compatibility
export { setupBusinessGuidanceTools } from './tools.js';