@azure/mcp 0.9.3 → 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
22
22
|
**Azure MCP Server** supercharges your agents with Azure context across **40+ different Azure services**.
|
|
23
23
|
|
|
24
24
|
# Installation
|
|
25
|
-
- To use Azure MCP server from node
|
|
25
|
+
- To use Azure MCP server from node one must have Node.js (LTS) installed and available on your system PATH — this provides both `npm` and `npx`. We recommend Node.js 20 LTS or later. To verify your installation run: `node --version`, `npm --version`, and `npx --version`.
|
|
26
26
|
- Configure the `mcp.json` file with the following:
|
|
27
27
|
|
|
28
28
|
```json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure",
|
|
5
5
|
"author": "Microsoft",
|
|
6
6
|
"homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"url": "https://github.com/microsoft/mcp/issues"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/microsoft/mcp.git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20.0.0"
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-win32-arm64": "0.9.
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-win32-x64": "0.9.
|
|
36
|
+
"@azure/mcp-win32-arm64": "0.9.5",
|
|
37
|
+
"@azure/mcp-linux-arm64": "0.9.5",
|
|
38
|
+
"@azure/mcp-linux-x64": "0.9.5",
|
|
39
|
+
"@azure/mcp-darwin-arm64": "0.9.5",
|
|
40
|
+
"@azure/mcp-darwin-x64": "0.9.5",
|
|
41
|
+
"@azure/mcp-win32-x64": "0.9.5"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|