@azure/mcp 3.0.0-beta.1 β†’ 3.0.0-beta.10

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 +42 -6
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -4,7 +4,8 @@
4
4
  All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP specification](https://modelcontextprotocol.io) to create a seamless connection between AI agents and Azure services. Azure MCP Server can be used alone or with the [GitHub Copilot for Azure extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azure-github-copilot) in VS Code.
5
5
  ## Table of Contents
6
6
  - [Overview](#overview)
7
- - [Installation](#installation)
7
+ - [Local Setup](#local-setup)
8
+ - [Remote Setup](#remote-setup)
8
9
  - [Usage](#usage)
9
10
  - [Getting Started](#getting-started)
10
11
  - [Sovereign Cloud Support](#sovereign-cloud-support)
@@ -27,7 +28,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
27
28
 
28
29
  **Azure MCP Server** supercharges your agents with Azure context across **40+ different Azure services**.
29
30
 
30
- # Installation
31
+ # Local Setup
31
32
  - 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`.
32
33
  - Configure the `mcp.json` file with the following:
33
34
 
@@ -62,12 +63,11 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
62
63
  | **Amazon Q Developer** | `~/.aws/amazonq/mcp.json` (global)<br>`.amazonq/mcp.json` (workspace) | [AWS Q Developer MCP Guide](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html) |
63
64
  | **Claude Desktop** | `~/.claude/claude_desktop_config.json` (macOS)<br>`%APPDATA%\Claude\claude_desktop_config.json` (Windows) | [Claude Desktop MCP Setup](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop) |
64
65
 
65
- ## Remote MCP Server (preview)
66
+ # Remote Setup
66
67
 
67
- Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoints. To self-host the Azure MCP Server for use with these platforms, deploy it as a remote MCP server on [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
68
-
69
- Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/azd-templates/README.md) for deployment options.
68
+ Host the Azure MCP Server as a remote endpoint when your client requires HTTP-based MCP servers (for example, Microsoft Foundry and Microsoft Copilot Studio) or when you want to share a single deployment across users and environments. The server can be self-hosted on [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
70
69
 
70
+ See the remote hosting [azd templates](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/azd-templates/README.md) for deployment options.
71
71
 
72
72
  # Usage
73
73
 
@@ -174,6 +174,26 @@ For full configuration options, see the [Sovereign Clouds documentation](https:/
174
174
  * "Delete application setting 'LogLevel' from my 'my-webapp' in 'my-resource-group'"
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
+ * "List the diagnostic detectors for web app 'my-webapp' in 'my-resource-group'"
178
+ * "Diagnose the web app 'my-webapp' with detector 'detector-name' in 'my-resource-group'"
179
+ * "Start the web app 'my-webapp' in 'my-resource-group'"
180
+ * "Stop the web app 'my-webapp' in 'my-resource-group'"
181
+ * "Restart the web app 'my-webapp' in 'my-resource-group'"
182
+ * "Soft restart the web app 'my-webapp' in 'my-resource-group' waiting for restart to complete"
183
+
184
+ ### πŸ›‘οΈ Azure Backup
185
+
186
+ * "Create a Recovery Services vault named 'myvault' in resource group 'myRG' in eastus with vault-type 'rsv'"
187
+ * "Get details of backup vault 'myvault' in resource group 'myRG'"
188
+ * "Create a backup policy for Azure VMs in vault 'myvault'"
189
+ * "Update backup policy schedule time to 04:00 in vault 'myvault'"
190
+ * "List protectable items in my backup vault"
191
+ * "Check backup status for my Azure resource in eastus"
192
+ * "Get recovery points for a protected item"
193
+ * "Find unprotected resources in my subscription"
194
+ * "Configure soft delete to 'AlwaysOn' and immutability to 'Locked' on my vault"
195
+ * "Enable cross-region restore on my vault"
196
+ * "Restore a soft-deleted backup item in vault 'myvault' for datasource '/subscriptions/.../virtualMachines/myvm'"
177
197
 
178
198
  ### πŸ–₯️ Azure CLI Generate
179
199
 
@@ -359,6 +379,20 @@ Example prompts that generate Azure CLI commands:
359
379
  * "Turn off DDoS protection in my Platform Landing Zone"
360
380
  * "Turn off Bastion host in my Platform Landing Zone"
361
381
 
382
+ ### Azure Terraform
383
+
384
+ * "Get the documentation for azurerm_virtual_network"
385
+ * "Show me the arguments for azurerm_storage_account"
386
+ * "Get AzAPI documentation for Microsoft.Storage/storageAccounts"
387
+ * "Get AzAPI docs for Microsoft.Compute/virtualMachines with API version 2024-07-01"
388
+ * "List all available Azure Verified Modules"
389
+ * "Show all versions of avm-res-network-virtualnetwork"
390
+ * "Get the documentation for avm-res-storage-storageaccount version 0.1.0"
391
+ * "Export all resources in resource group my-rg to Terraform"
392
+ * "Export all storage accounts in my subscription using a resource graph query"
393
+ * "Validate Terraform files in ./my-terraform-folder against Azure security policies"
394
+ * "Validate my Terraform plan file against Azure-Proactive-Resiliency-Library-v2 policies"
395
+
362
396
  ### πŸ›οΈ Azure Well-Architected Framework
363
397
 
364
398
  * "List all services with Well-Architected Framework guidance"
@@ -376,6 +410,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
376
410
  - 🎀 **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
377
411
  - βš™οΈ **Azure App Configuration** - Configuration management
378
412
  - πŸ•ΈοΈ **Azure App Service** - Web app hosting
413
+ - πŸ›‘οΈ **Azure Backup** - Recovery Services vault management, backup policies, protection, jobs, recovery points, governance, and disaster recovery
379
414
  - πŸ›‘οΈ **Azure Best Practices** - Secure, production-grade guidance
380
415
  - πŸ–₯️ **Azure CLI Generate** - Generate Azure CLI commands from natural language
381
416
  - πŸ“ž **Azure Communication Services** - SMS messaging and communication
@@ -415,6 +450,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
415
450
  - πŸ’Ύ **Azure Storage** - Blob storage
416
451
  - **Azure Storage Sync** - Azure File Sync management operations
417
452
  - πŸ“‹ **Azure Subscription** - Subscription management
453
+ - πŸ—οΈ **Azure Terraform** - Terraform provider documentation, Azure Verified Modules, resource export, and policy validation
418
454
  - πŸ—οΈ **Azure Terraform Best Practices** - Infrastructure as code guidance
419
455
  - πŸ–₯️ **Azure Virtual Desktop** - Virtual desktop infrastructure
420
456
  - πŸ›οΈ **Azure Well-Architected Framework** - Architectural best practices and design patterns
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.10",
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-linux-x64": "3.0.0-beta.1",
37
- "@azure/mcp-linux-arm64": "3.0.0-beta.1",
38
- "@azure/mcp-win32-arm64": "3.0.0-beta.1",
39
- "@azure/mcp-win32-x64": "3.0.0-beta.1",
40
- "@azure/mcp-darwin-arm64": "3.0.0-beta.1",
41
- "@azure/mcp-darwin-x64": "3.0.0-beta.1"
36
+ "@azure/mcp-linux-arm64": "3.0.0-beta.10",
37
+ "@azure/mcp-darwin-x64": "3.0.0-beta.10",
38
+ "@azure/mcp-linux-x64": "3.0.0-beta.10",
39
+ "@azure/mcp-darwin-arm64": "3.0.0-beta.10",
40
+ "@azure/mcp-win32-arm64": "3.0.0-beta.10",
41
+ "@azure/mcp-win32-x64": "3.0.0-beta.10"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"