@azure/mcp 2.0.0-beta.17 → 2.0.0-beta.19
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 +5 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -156,8 +156,11 @@ Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/bl
|
|
|
156
156
|
* "Send an email from my communication service endpoint with custom sender name and multiple recipients"
|
|
157
157
|
* "Send an email to 'user1@example.com' and 'user2@example.com' with subject 'Team Update' and message 'Please review the attached document.'"
|
|
158
158
|
|
|
159
|
-
###
|
|
159
|
+
### 🖥️ Azure Compute
|
|
160
160
|
|
|
161
|
+
* "List all my managed disks in subscription 'my-subscription'"
|
|
162
|
+
* "Show me all disks in resource group 'my-resource-group'"
|
|
163
|
+
* "Get details of disk 'my-disk' in resource group 'my-resource-group'"
|
|
161
164
|
* "List all virtual machines in my subscription"
|
|
162
165
|
* "Show me all VMs in resource group 'my-resource-group'"
|
|
163
166
|
* "Get details for virtual machine 'my-vm' in resource group 'my-resource-group'"
|
|
@@ -301,7 +304,7 @@ The Azure MCP Server provides tools for interacting with **42+ Azure service are
|
|
|
301
304
|
- 🛡️ **Azure Best Practices** - Secure, production-grade guidance
|
|
302
305
|
- 🖥️ **Azure CLI Generate** - Generate Azure CLI commands from natural language
|
|
303
306
|
- 📞 **Azure Communication Services** - SMS messaging and communication
|
|
304
|
-
- � **Azure Compute** - Virtual Machine
|
|
307
|
+
- � **Azure Compute** - Virtual Machine, Virtual Machine Scale Set, and Disk management
|
|
305
308
|
- �🔐 **Azure Confidential Ledger** - Tamper-proof ledger operations
|
|
306
309
|
- 📦 **Azure Container Apps** - Container hosting
|
|
307
310
|
- 📦 **Azure Container Registry (ACR)** - Container registry management
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.19",
|
|
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
|
+
"url": "https://github.com/microsoft/mcp.git",
|
|
18
|
+
"type": "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-
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-darwin-x64": "2.0.0-beta.
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.19",
|
|
37
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.19",
|
|
38
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.19",
|
|
39
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.19",
|
|
40
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.19",
|
|
41
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.19"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|