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.

10 lines (9 loc) 235 B
export class ListProjects { projectRepository; constructor(projectRepository) { this.projectRepository = projectRepository; } async listProjects() { return this.projectRepository.listProjects(); } }