Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Commit df3a60b

Browse files
Update documentation to use node 20 (#628)
1 parent d6b2aa7 commit df3a60b

6 files changed

Lines changed: 13 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
- Added support for listing SQL elastic pools via the command: `azmcp sql elastic-pool list`. [[#581](https://github.com/Azure/azure-mcp/pull/581)]
1111

1212
### Bugs Fixed
13-
1413
- Fixed Azure CLI executable path resolution on Windows to prioritize .cmd over bash script. [[#611](https://github.com/Azure/azure-mcp/issues/611)]
1514

15+
### Other Changes
16+
- Change `engines.node` in `package.json` to require Node.js version `>=20.0.0`.
17+
1618
## 0.4.0 (2025-07-15)
1719

1820
### Features Added
@@ -36,6 +38,7 @@
3638
- Improved install reliability and error handling when missing platform packages on Ubuntu. [[#394](https://github.com/Azure/azure-mcp/pull/394)]
3739

3840
### Other Changes
41+
- Updated `engines.node` in `package.json` to require Node.js version `>=22.0.0`.
3942

4043
#### Dependency Updates
4144

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Here's a short (16 seconds) video to help you get the Azure MCP Server installed
1111
* [🔮 Insiders release](https://code.visualstudio.com/insiders)
1212
1. Install the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) and [GitHub Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat) extensions
1313
1. Install [Node.js](https://nodejs.org/en/download) 20 or later
14-
* Ensure `npx` is your path
14+
* Ensure `npx` is included in your environment path.
1515
1. Install any of the available Azure MCP Servers from the table below.
1616
1. Open GitHub Copilot in VS Code and [switch to Agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode)
1717
1. Click `refresh` on the tools list.

TROUBLESHOOTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ The Azure MCP wrapper automatically installs the correct platform-specific packa
462462
463463
5. **Verify Node.js and npm versions:**
464464
```bash
465-
node --version # Should be 18.0.0 or later
465+
node --version # Should be 20.0.0 or later
466466
npm --version
467467
```
468468

eng/npm/platform/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"url": "git+https://github.com/Azure/azure-mcp.git"
1919
},
2020
"engines": {
21-
"node": ">=22.0.0"
21+
"node": ">=20.0.0"
2222
},
2323
"main": "./index.js",
2424
"bin": {

eng/npm/wrapper/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eng/npm/wrapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"url": "git+https://github.com/Azure/azure-mcp.git"
1919
},
2020
"engines": {
21-
"node": ">=22.0.0"
21+
"node": ">=20.0.0"
2222
},
2323
"bin": {
2424
"azmcp": "./index.js"

0 commit comments

Comments
 (0)