diff --git a/README.md b/README.md index 8a9a6a0d..8b6c48f0 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,10 @@ A Model Context Protocol server for interacting with MongoDB Databases and Mongo ## Prerequisites -- Node.js (v20.19.0 or later) +- Node.js + - At least 20.19.0 + - When using v22 then at least v22.12.0 + - Otherwise any version 23+ ```shell node -v diff --git a/package-lock.json b/package-lock.json index e6792965..a80dcb27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -53,7 +53,7 @@ "yaml": "^2.8.0" }, "engines": { - "node": ">=20.19.0" + "node": "^20.19.0 || ^22.12.0 || >= 23.0.0" } }, "node_modules/@ampproject/remapping": { diff --git a/package.json b/package.json index cff7f553..5973a804 100644 --- a/package.json +++ b/package.json @@ -74,6 +74,6 @@ "zod": "^3.25.76" }, "engines": { - "node": ">=20.19.0" + "node": "^20.19.0 || ^22.12.0 || >= 23.0.0" } }