Hi @softbytes @samarjit.ghosh @AdmiralBot,
For the MongoDB drivers its correct that the default version is 3.10, which is not compatible with MongoDB versions 4.5+, with that said, you can opt to use other drivers in your code by changing the way you initialize the MongoClient.
If you are using MongoDB v5, or v6, please replace in your scripts code the version of the MongoDB drivers to 4.1.0, after that your scripts should work.
Here is an example on how to get an updated MongoClient:
const MongoClient = require('mongodb@4.1.0').MongoClient;
Hope that helps, and if you have any further questions please let me know.
I’ll keep an eye on this thread to make sure I can give answers on time.