@azure/mcp 2.0.0-beta.29 → 2.0.0-beta.30

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.
Files changed (2) hide show
  1. package/README.md +43 -3
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -7,6 +7,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
7
7
  - [Installation](#installation)
8
8
  - [Usage](#usage)
9
9
  - [Getting Started](#getting-started)
10
+ - [Sovereign Cloud Support](#sovereign-cloud-support)
10
11
  - [What can you do with the Azure MCP Server?](#what-can-you-do-with-the-azure-mcp-server)
11
12
  - [Complete List of Supported Azure Services](#complete-list-of-supported-azure-services)
12
13
  - [Support and Reference](#support-and-reference)
@@ -81,6 +82,42 @@ Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/bl
81
82
  1. We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Azure MCP server
82
83
  - 👉 [Open an issue in the public repository](https://github.com/microsoft/mcp/issues/new/choose)
83
84
 
85
+ ## Sovereign Cloud Support
86
+
87
+ Azure MCP Server supports connecting to Azure sovereign clouds. By default, it authenticates against the Azure Public Cloud.
88
+
89
+ | Cloud | Aliases |
90
+ |-------|---------|
91
+ | Azure Public Cloud | `AzureCloud`, `AzurePublicCloud`, `Public`, `AzurePublic` |
92
+ | Azure China Cloud | `AzureChinaCloud`, `China`, `AzureChina` |
93
+ | Azure US Government | `AzureUSGovernment`, `USGov`, `AzureUSGovernmentCloud`, `USGovernment` |
94
+
95
+ *_The aliases are case insensitive._
96
+
97
+ Use the `--cloud` option when starting the server, or set the `AZURE_CLOUD` environment variable:
98
+
99
+ ```bash
100
+ # Command line
101
+ azmcp server start --cloud AzureChinaCloud
102
+
103
+ # Environment variable (PowerShell)
104
+ $env:AZURE_CLOUD = "AzureUSGovernment"
105
+ azmcp server start
106
+ ```
107
+
108
+ Before connecting, authenticate your local tools against the target cloud:
109
+
110
+ ```bash
111
+ # Azure CLI
112
+ az cloud set --name AzureChinaCloud
113
+ az login
114
+
115
+ # Azure PowerShell
116
+ Connect-AzAccount -Environment AzureChinaCloud
117
+ ```
118
+
119
+ For full configuration options, see the [Sovereign Clouds documentation](https://github.com/microsoft/mcp/blob/main/docs/sovereign-clouds.md).
120
+
84
121
  ## What can you do with the Azure MCP Server?
85
122
 
86
123
  ✨ The Azure MCP Server supercharges your agents with Azure context. Here are some cool prompts you can try:
@@ -186,6 +223,10 @@ Example prompts that generate Azure CLI commands:
186
223
  * "Update VM 'my-vm' tags to environment=production"
187
224
  * "Create a VMSS named 'my-vmss' with 3 instances for web workloads"
188
225
  * "Update VMSS 'my-vmss' capacity to 5 instances"
226
+ * "Delete virtual machine 'my-vm' in resource group 'my-resource-group'"
227
+ * "Force delete VM 'my-vm' in resource group 'my-rg' using force-deletion"
228
+ * "Delete virtual machine scale set 'my-vmss' in resource group 'my-resource-group'"
229
+ * "Force delete VMSS 'my-vmss' in resource group 'my-rg' using force-deletion"
189
230
 
190
231
  ### �📦 Azure Container Apps
191
232
 
@@ -273,7 +314,7 @@ Example prompts that generate Azure CLI commands:
273
314
 
274
315
  * "Query my Log Analytics workspace"
275
316
 
276
- ### 🧭 Azure Monitor Instrumentation
317
+ ### 🧭 Azure Monitor Instrumentation (under Azure Monitor)
277
318
 
278
319
  * "List available Azure Monitor onboarding learning resources"
279
320
  * "Get the learning resource at 'concepts/dotnet/opentelemetry-pipeline.md'"
@@ -357,8 +398,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
357
398
  - 🗃️ **Azure Managed Lustre** - High-performance Lustre filesystem operations
358
399
  - 🏪 **Azure Marketplace** - Product discovery
359
400
  - 🔄 **Azure Migrate** - Platform Landing Zone generation and modification guidance
360
- - 📈 **Azure Monitor** - Logging, metrics, and health monitoring
361
- - 🧭 **Azure Monitor Instrumentation** - Deterministic onboarding and migration workflow for instrumenting local applications
401
+ - 📈 **Azure Monitor** - Logging, metrics, health monitoring, and instrumentation onboarding/migration workflow for local applications
362
402
  - ⚖️ **Azure Policy** - Policies set to enforce organizational standards
363
403
  - ⚙️ **Azure Native ISV Services** - Third-party integrations
364
404
  - 🛡️ **Azure Quick Review CLI** - Compliance scanning
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.29",
3
+ "version": "2.0.0-beta.30",
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
- "url": "https://github.com/microsoft/mcp.git",
18
- "type": "git"
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-x64": "2.0.0-beta.29",
37
- "@azure/mcp-linux-arm64": "2.0.0-beta.29",
38
- "@azure/mcp-darwin-arm64": "2.0.0-beta.29",
39
- "@azure/mcp-linux-x64": "2.0.0-beta.29",
40
- "@azure/mcp-win32-arm64": "2.0.0-beta.29",
41
- "@azure/mcp-darwin-x64": "2.0.0-beta.29"
36
+ "@azure/mcp-linux-x64": "2.0.0-beta.30",
37
+ "@azure/mcp-darwin-arm64": "2.0.0-beta.30",
38
+ "@azure/mcp-darwin-x64": "2.0.0-beta.30",
39
+ "@azure/mcp-win32-arm64": "2.0.0-beta.30",
40
+ "@azure/mcp-win32-x64": "2.0.0-beta.30",
41
+ "@azure/mcp-linux-arm64": "2.0.0-beta.30"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"