UNPKG

defect-inspection-tools-mcp-server

Version:

Defect inspection tools server handling defect detection, analysis, and reporting with AI/ML capabilities for quality control

11 lines 304 B
import { MongoClient } from 'mongodb'; let cachedClient = null; export async function getMongoClient(uri) { if (cachedClient) { return cachedClient; } cachedClient = new MongoClient(uri); await cachedClient.connect(); return cachedClient; } //# sourceMappingURL=mongodb.js.map