UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

23 lines 649 B
import { setupSecurityTools } from './tools.js'; /** * Security Module - 12-Factor MCP Implementation * * This module replaces the legacy security implementation * with a 12-factor compliant version that uses: * * - Standardized tool interface * - SQLite-based event storage * - Schema validation * - Structured outputs * - Stateless execution * - Human approval workflows for critical operations */ /** * Setup the security module */ export async function setupSecurity() { return await setupSecurityTools(); } // Export for backward compatibility export { setupSecurityTools } from './tools.js'; //# sourceMappingURL=index.js.map