@boundless-oss/atlas
Version:
Atlas - MCP Server for comprehensive startup project management
26 lines (23 loc) • 696 B
text/typescript
import { ToolRegistration } from '../../core/types.js';
import { setupWorkspaceTools } from './tools.js';
/**
* Workspace Module - 12-Factor MCP Implementation
*
* This module replaces the legacy workspace implementation
* with a 12-factor compliant version that uses:
*
* - Standardized tool interface
* - SQLite-based data storage
* - Schema validation
* - Structured outputs
* - Stateless execution
* - Multi-repository workspace management
*/
/**
* Setup the workspace module
*/
export async function setupWorkspace(): Promise<ToolRegistration> {
return await setupWorkspaceTools();
}
// Export for backward compatibility
export { setupWorkspaceTools } from './tools.js';