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.
7 lines (6 loc) • 406 B
JavaScript
import { ProjectContextDetection } from "../../../data/usecases/project-context-detection/project-context-detection.js";
import { MongoDBProjectRepository } from "../../../infra/mongodb/repositories/mongodb-project-repository.js";
export const makeProjectContextDetection = () => {
const projectRepository = new MongoDBProjectRepository();
return new ProjectContextDetection(projectRepository);
};