You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add document management functions to MCP server
- Implemented `get_document` to retrieve a document by ID.
- Added `upsert_document` for inserting or updating documents.
- Created `delete_document` to remove documents by ID.
- Enhanced error handling and logging for each operation.
* Add function to list documents in a specified collection
- Introduced `list_documents_in_collection` to retrieve document IDs and content from a specified collection.
- Implemented error handling for cluster availability and query execution.
- Added logging for query operations to enhance traceability.
* fixed feedback based on comments
* Refactor document management functions in MCP server
- Renamed `get_document` to `get_document_by_id` for clarity.
- Renamed `upsert_document` to `upsert_document_by_id` to specify operation by ID.
- Renamed `delete_document` to `delete_document_by_id` for consistency.
- Updated docstrings to reflect changes and improve documentation.
- Enhanced error logging by removing type information for cleaner output.
* Update README.md to reflect enhanced document management features
- Added descriptions for new functionalities: retrieving, upserting, and deleting documents by ID from specified scopes and collections.
---------
Co-authored-by: Nithish Raghunandanan <[email protected]>
0 commit comments