UNPKG

mongodb-memory-bank-mcp

Version:

FIXED: MongoDB Memory Bank MCP with bulletproof error handling, smart operations, and session state management. Eliminates [object Object] errors and user confusion.

9 lines (8 loc) 657 B
import { ProjectContextDetectionController } from "../../../../presentation/controllers/project-context-detection/project-context-detection-controller.js"; import { makeProjectContextDetection } from "../../use-cases/project-context-detection-factory.js"; import { makeProjectContextDetectionValidation } from "./project-context-detection-validation-factory.js"; export const makeProjectContextDetectionController = () => { const validator = makeProjectContextDetectionValidation(); const projectContextDetectionUseCase = makeProjectContextDetection(); return new ProjectContextDetectionController(projectContextDetectionUseCase, validator); };