@azure/mcp 3.0.0-beta.2 β 3.0.0-beta.4
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 +14 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -175,6 +175,19 @@ For full configuration options, see the [Sovereign Clouds documentation](https:/
|
|
|
175
175
|
* "List the deployments for web app 'my-webapp' in 'my-resource-group'"
|
|
176
176
|
* "Get the deployment 'deployment-id' for web app 'my-webapp' in 'my-resource-group'"
|
|
177
177
|
|
|
178
|
+
### π‘οΈ Azure Backup
|
|
179
|
+
|
|
180
|
+
* "Create a Recovery Services vault named 'myvault' in resource group 'myRG' in eastus with vault-type 'rsv'"
|
|
181
|
+
* "Get details of backup vault 'myvault' in resource group 'myRG'"
|
|
182
|
+
* "Create a backup policy for Azure VMs in vault 'myvault'"
|
|
183
|
+
* "List protectable items in my backup vault"
|
|
184
|
+
* "Check backup status for my Azure resource in eastus"
|
|
185
|
+
* "Get recovery points for a protected item"
|
|
186
|
+
* "Find unprotected resources in my subscription"
|
|
187
|
+
* "Configure soft delete to 'AlwaysOn' and immutability to 'Locked' on my vault"
|
|
188
|
+
* "Enable cross-region restore on my vault"
|
|
189
|
+
* "Restore a soft-deleted backup item in vault 'myvault' for datasource '/subscriptions/.../virtualMachines/myvm'"
|
|
190
|
+
|
|
178
191
|
### π₯οΈ Azure CLI Generate
|
|
179
192
|
|
|
180
193
|
* Generate Azure CLI commands based on user intent
|
|
@@ -376,6 +389,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
376
389
|
- π€ **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
|
|
377
390
|
- βοΈ **Azure App Configuration** - Configuration management
|
|
378
391
|
- πΈοΈ **Azure App Service** - Web app hosting
|
|
392
|
+
- π‘οΈ **Azure Backup** - Recovery Services vault management, backup policies, protection, jobs, recovery points, governance, and disaster recovery
|
|
379
393
|
- π‘οΈ **Azure Best Practices** - Secure, production-grade guidance
|
|
380
394
|
- π₯οΈ **Azure CLI Generate** - Generate Azure CLI commands from natural language
|
|
381
395
|
- π **Azure Communication Services** - SMS messaging and communication
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.4",
|
|
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",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-linux-x64": "3.0.0-beta.
|
|
37
|
-
"@azure/mcp-darwin-
|
|
38
|
-
"@azure/mcp-win32-arm64": "3.0.0-beta.
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-linux-x64": "3.0.0-beta.4",
|
|
37
|
+
"@azure/mcp-darwin-arm64": "3.0.0-beta.4",
|
|
38
|
+
"@azure/mcp-win32-arm64": "3.0.0-beta.4",
|
|
39
|
+
"@azure/mcp-darwin-x64": "3.0.0-beta.4",
|
|
40
|
+
"@azure/mcp-win32-x64": "3.0.0-beta.4",
|
|
41
|
+
"@azure/mcp-linux-arm64": "3.0.0-beta.4"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|