{"name":"MongoDB CRUD API","version":"1.0.0","description":"RESTful API for MongoDB operations with API key authentication","endpoints":{"databases":{"GET /api/databases":"List all databases","GET /api/databases/:dbName":"Get database info"},"collections":{"GET /api/collections/:dbName":"List all collections in a database","GET /api/collections/:dbName/:collectionName":"Get collection info","POST /api/collections/:dbName/:collectionName":"Create a collection","DELETE /api/collections/:dbName/:collectionName":"Delete a collection"},"documents":{"GET /api/documents/:dbName/:collectionName":"Get all documents (with pagination)","GET /api/documents/:dbName/:collectionName/:id":"Get a document by ID","POST /api/documents/:dbName/:collectionName":"Create a document","POST /api/documents/:dbName/:collectionName/bulk":"Create multiple documents","PUT /api/documents/:dbName/:collectionName/:id":"Replace a document","PATCH /api/documents/:dbName/:collectionName/:id":"Update a document partially","DELETE /api/documents/:dbName/:collectionName/:id":"Delete a document","DELETE /api/documents/:dbName/:collectionName":"Delete multiple documents by filter"}},"documentation":"See README.md for detailed usage or visit /docs or /api-docs for interactive documentation"}