diff --git a/docker/examples/mongo/README.md b/docker/examples/mongo/README.md
index 6e67b219e..5a9aa81e7 100644
--- a/docker/examples/mongo/README.md
+++ b/docker/examples/mongo/README.md
@@ -7,7 +7,7 @@ This config is only for local development and testing.
## MongoDB
-- official MongoDB: **5.0.3** on **Ubuntu Focal**
+- official MongoDB: **6.0.7** on **Ubuntu Focal**
- ports **27017**
## Building and Running
diff --git a/docs/source/data-publishing/ogcapi-features.rst b/docs/source/data-publishing/ogcapi-features.rst
index 70fcfb998..139094c44 100644
--- a/docs/source/data-publishing/ogcapi-features.rst
+++ b/docs/source/data-publishing/ogcapi-features.rst
@@ -248,6 +248,14 @@ MongoDB
.. note::
Mongo 5 or greater is supported.
+`MongoDB `_ is a powerful and versatile NoSQL database that provides numerous advantages, making it a preferred choice for many applications. One of the main reasons to use MongoDB is its ability to handle large volumes of unstructured data, making it ideal for managing diverse data types such as text, geospatial, and multimedia data. Additionally, MongoDB's flexible document model allows for easy schema evolution, enabling developers to iterate quickly and adapt to changing requirements.
+
+`GeoJSON `_ support is available officially by MongoDB , thus a GeoJSON file can be added to MongoDB using following command
+
+`mongoimport --db test -c points --file "path/to/file.geojson" --jsonArray`
+
+Here `test` is the name of database , `points` is the target collection name.
+
* each document must be a GeoJSON Feature, with a valid geometry.
.. code-block:: yaml