@azure/mcp 2.0.0-beta.3 โ 2.0.0-beta.31
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 +185 -32
- package/package.json +11 -10
package/README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# <img height="36" width="36" src="https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/acom_social_icon_azure" alt="Microsoft Azure Logo" /> Azure MCP Server NPM Package
|
|
2
2
|
|
|
3
|
-
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.
|
|
4
3
|
|
|
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
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)
|
|
@@ -33,7 +34,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
33
34
|
```json
|
|
34
35
|
{
|
|
35
36
|
"mcpServers": {
|
|
36
|
-
"
|
|
37
|
+
"Azure MCP Server": {
|
|
37
38
|
"command": "npx",
|
|
38
39
|
"args": [
|
|
39
40
|
"-y",
|
|
@@ -50,15 +51,23 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
50
51
|
**Client-Specific Configuration**
|
|
51
52
|
| IDE | File Location | Documentation Link |
|
|
52
53
|
|-----|---------------|-------------------|
|
|
53
|
-
| **
|
|
54
|
+
| **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
|
|
55
|
+
| **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
|
|
56
|
+
| **GitHub Copilot CLI** | `~/.copilot/mcp-config.json` | [Copilot CLI MCP Configuration](#github-copilot-cli-configuration) |
|
|
54
57
|
| **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://scottspence.com/posts/configuring-mcp-tools-in-claude-code) |
|
|
55
|
-
| **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) |
|
|
56
|
-
| **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
|
|
57
58
|
| **Eclipse IDE** | GitHub Copilot Chat -> Configure Tools -> MCP Servers | [Eclipse MCP Documentation](https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp/extend-copilot-chat-with-mcp#configuring-mcp-servers-in-eclipse) |
|
|
58
59
|
| **IntelliJ IDEA** | Built-in MCP server (2025.2+)<br>Settings > Tools > MCP Server | [IntelliJ MCP Documentation](https://www.jetbrains.com/help/ai-assistant/mcp.html) |
|
|
59
|
-
| **
|
|
60
|
-
| **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
|
|
60
|
+
| **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
|
|
61
61
|
| **Windsurf** | `~/.codeium/windsurf/mcp_config.json` | [Windsurf Cascade MCP Integration](https://docs.windsurf.com/windsurf/cascade/mcp) |
|
|
62
|
+
| **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
|
+
| **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
|
+
## Remote MCP Server (preview)
|
|
66
|
+
|
|
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.
|
|
70
|
+
|
|
62
71
|
|
|
63
72
|
# Usage
|
|
64
73
|
|
|
@@ -73,25 +82,61 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
73
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
|
|
74
83
|
- ๐ [Open an issue in the public repository](https://github.com/microsoft/mcp/issues/new/choose)
|
|
75
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
|
+
|
|
76
121
|
## What can you do with the Azure MCP Server?
|
|
77
122
|
|
|
78
123
|
โจ The Azure MCP Server supercharges your agents with Azure context. Here are some cool prompts you can try:
|
|
79
124
|
|
|
80
|
-
### ๐งฎ
|
|
125
|
+
### ๐งฎ Microsoft Foundry
|
|
81
126
|
|
|
82
|
-
* List
|
|
83
|
-
* Deploy
|
|
84
|
-
* List
|
|
127
|
+
* List Microsoft Foundry models
|
|
128
|
+
* Deploy Microsoft Foundry models
|
|
129
|
+
* List Microsoft Foundry model deployments
|
|
85
130
|
* List knowledge indexes
|
|
86
131
|
* Get knowledge index schema configuration
|
|
87
|
-
* Create
|
|
88
|
-
* List
|
|
89
|
-
* Connect and query
|
|
90
|
-
* Evaluate
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
*
|
|
132
|
+
* Create Microsoft Foundry agents
|
|
133
|
+
* List Microsoft Foundry agents
|
|
134
|
+
* Connect and query Microsoft Foundry agents
|
|
135
|
+
* Evaluate Microsoft Foundry agents
|
|
136
|
+
|
|
137
|
+
### ๐ Azure Advisor
|
|
138
|
+
|
|
139
|
+
* "List my Advisor recommendations"
|
|
95
140
|
|
|
96
141
|
### ๐ Azure AI Search
|
|
97
142
|
|
|
@@ -119,15 +164,25 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
119
164
|
|
|
120
165
|
### ๐ธ๏ธ Azure App Service
|
|
121
166
|
|
|
122
|
-
* "
|
|
123
|
-
* "
|
|
124
|
-
* "
|
|
125
|
-
* "Get the details for app
|
|
167
|
+
* "Add a database connection for an App Service web app"
|
|
168
|
+
* "List the web apps in my subscription"
|
|
169
|
+
* "Show me the web apps in my 'my-resource-group' resource group"
|
|
170
|
+
* "Get the details for web app 'my-webapp' in 'my-resource-group'"
|
|
171
|
+
* "Get the application settings for my web app 'my-webapp' in 'my-resource-group'"
|
|
172
|
+
* "Add application setting 'LogLevel' with value 'INFO' to my 'my-webapp' in 'my-resource-group'"
|
|
173
|
+
* "Set application setting 'LogLevel' to 'WARNING' to my 'my-webapp' in 'my-resource-group'"
|
|
174
|
+
* "Delete application setting 'LogLevel' from my 'my-webapp' in 'my-resource-group'"
|
|
175
|
+
* "List the deployments for web app 'my-webapp' in 'my-resource-group'"
|
|
176
|
+
* "Get the deployment 'deployment-id' for web app 'my-webapp' in 'my-resource-group'"
|
|
126
177
|
|
|
127
178
|
### ๐ฅ๏ธ Azure CLI Generate
|
|
128
179
|
|
|
129
180
|
* Generate Azure CLI commands based on user intent
|
|
130
181
|
|
|
182
|
+
Example prompts that generate Azure CLI commands:
|
|
183
|
+
|
|
184
|
+
* "Get the details for app service plan 'my-app-service-plan'"
|
|
185
|
+
|
|
131
186
|
### ๐ฅ๏ธ Azure CLI Install
|
|
132
187
|
|
|
133
188
|
* Get installation instructions for Azure CLI, Azure Developer CLI and Azure Functions Core Tools CLI for your platform.
|
|
@@ -144,7 +199,36 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
144
199
|
* "Send an email from my communication service endpoint with custom sender name and multiple recipients"
|
|
145
200
|
* "Send an email to 'user1@example.com' and 'user2@example.com' with subject 'Team Update' and message 'Please review the attached document.'"
|
|
146
201
|
|
|
147
|
-
###
|
|
202
|
+
### ๐ฅ๏ธ Azure Compute
|
|
203
|
+
|
|
204
|
+
* "List all my managed disks in subscription 'my-subscription'"
|
|
205
|
+
* "Show me all disks in resource group 'my-resource-group'"
|
|
206
|
+
* "Get details of disk 'my-disk' in resource group 'my-resource-group'"
|
|
207
|
+
* "Create a 128 GB Premium_LRS managed disk named 'my-disk' in resource group 'my-resource-group'"
|
|
208
|
+
* "Create a managed disk from snapshot in resource group 'my-resource-group'"
|
|
209
|
+
* "Create a disk 'my-disk' in resource group 'my-resource-group' with tags env=prod team=infra"
|
|
210
|
+
* "Delete managed disk 'my-disk' in resource group 'my-resource-group'"
|
|
211
|
+
* "Update disk 'my-disk' in resource group 'my-resource-group' to 256 GB"
|
|
212
|
+
* "Change the SKU of disk 'my-disk' to Premium_LRS"
|
|
213
|
+
* "Set the IOPS limit on ultra disk 'my-disk' in resource group 'my-resource-group' to 10000"
|
|
214
|
+
* "List all virtual machines in my subscription"
|
|
215
|
+
* "Show me all VMs in resource group 'my-resource-group'"
|
|
216
|
+
* "Get details for virtual machine 'my-vm' in resource group 'my-resource-group'"
|
|
217
|
+
* "Get virtual machine 'my-vm' with instance view including power state and runtime status"
|
|
218
|
+
* "Show me the power state and provisioning status of VM 'my-vm'"
|
|
219
|
+
* "What is the current status of my virtual machine 'my-vm'?"
|
|
220
|
+
* "Create a new VM named 'my-vm' in resource group 'my-rg' for web workloads"
|
|
221
|
+
* "Create a Linux VM with Ubuntu 22.04 and SSH key authentication"
|
|
222
|
+
* "Create a development VM with Standard_B2s size in East US"
|
|
223
|
+
* "Update VM 'my-vm' tags to environment=production"
|
|
224
|
+
* "Create a VMSS named 'my-vmss' with 3 instances for web workloads"
|
|
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"
|
|
230
|
+
|
|
231
|
+
### ๏ฟฝ๐ฆ Azure Container Apps
|
|
148
232
|
|
|
149
233
|
* "List the container apps in my subscription"
|
|
150
234
|
* "Show me the container apps in my 'my-resource-group' resource group"
|
|
@@ -182,6 +266,26 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
182
266
|
* "Publish an event with data '{\"name\": \"test\"}' to topic 'my-topic' using CloudEvents schema"
|
|
183
267
|
* "Send custom event data to Event Grid topic 'analytics-events' with EventGrid schema"
|
|
184
268
|
|
|
269
|
+
### ๐ Azure File Shares
|
|
270
|
+
|
|
271
|
+
* "Get details about a specific file share in my resource group"
|
|
272
|
+
* "Create a new Azure managed file share with NFS protocol"
|
|
273
|
+
* "Create a file share with 64 GiB storage, 3000 IOPS, and 125 MiB/s throughput"
|
|
274
|
+
* "Update the provisioned storage size of my file share"
|
|
275
|
+
* "Update network access settings for my file share"
|
|
276
|
+
* "Delete a file share from my resource group"
|
|
277
|
+
* "Check if a file share name is available"
|
|
278
|
+
* "Get details about a file share snapshot"
|
|
279
|
+
* "Create a snapshot of my file share"
|
|
280
|
+
* "Update tags on a file share snapshot"
|
|
281
|
+
* "Delete a file share snapshot"
|
|
282
|
+
* "Get a private endpoint connection for my file share"
|
|
283
|
+
* "Update private endpoint connection status to Approved"
|
|
284
|
+
* "Delete a private endpoint connection"
|
|
285
|
+
* "Get file share limits and quotas for a region"
|
|
286
|
+
* "Get provisioning recommendations for my file share workload"
|
|
287
|
+
* "Get usage data and metrics for my file share"
|
|
288
|
+
|
|
185
289
|
### ๐ Azure Key Vault
|
|
186
290
|
|
|
187
291
|
* "List all secrets in my key vault 'my-vault'"
|
|
@@ -210,6 +314,14 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
210
314
|
|
|
211
315
|
* "Query my Log Analytics workspace"
|
|
212
316
|
|
|
317
|
+
### ๐งญ Azure Monitor Instrumentation (under Azure Monitor)
|
|
318
|
+
|
|
319
|
+
* "List available Azure Monitor onboarding learning resources"
|
|
320
|
+
* "Get the learning resource at 'concepts/dotnet/opentelemetry-pipeline.md'"
|
|
321
|
+
* "Start Azure Monitor instrumentation orchestration for my local workspace"
|
|
322
|
+
* "Continue to the next orchestration step after I complete the previous action"
|
|
323
|
+
* "Send brownfield analysis findings to continue migration planning"
|
|
324
|
+
|
|
213
325
|
### ๐ง Azure Resource Management
|
|
214
326
|
|
|
215
327
|
* "List my resource groups"
|
|
@@ -241,36 +353,53 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
241
353
|
* "Get details about my Storage container"
|
|
242
354
|
* "Upload my file to the blob container"
|
|
243
355
|
|
|
356
|
+
### ๐ Azure Migrate
|
|
357
|
+
|
|
358
|
+
* "Generate a Platform Landing Zone"
|
|
359
|
+
* "Turn off DDoS protection in my Platform Landing Zone"
|
|
360
|
+
* "Turn off Bastion host in my Platform Landing Zone"
|
|
361
|
+
|
|
362
|
+
### ๐๏ธ Azure Well-Architected Framework
|
|
363
|
+
|
|
364
|
+
* "List all services with Well-Architected Framework guidance"
|
|
365
|
+
* "What services have architectural guidance?"
|
|
366
|
+
* "Get Well-Architected Framework guidance for App Service"
|
|
367
|
+
* "What's the architectural guidance for Azure Cosmos DB?"
|
|
244
368
|
|
|
245
369
|
## Complete List of Supported Azure Services
|
|
246
370
|
|
|
247
|
-
The Azure MCP Server provides tools for interacting with **
|
|
371
|
+
The Azure MCP Server provides tools for interacting with **43+ Azure service areas**:
|
|
248
372
|
|
|
249
|
-
- ๐งฎ **
|
|
373
|
+
- ๐งฎ **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
374
|
+
- ๐ **Azure Advisor** - Advisor recommendations
|
|
250
375
|
- ๐ **Azure AI Search** - Search engine/vector database operations
|
|
251
376
|
- ๐ค **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
|
|
252
|
-
- ๐ค **Azure AI Best Practices** - AI app development guidance for Azure AI Foundry and Microsoft Agent Framework
|
|
253
377
|
- โ๏ธ **Azure App Configuration** - Configuration management
|
|
254
378
|
- ๐ธ๏ธ **Azure App Service** - Web app hosting
|
|
255
379
|
- ๐ก๏ธ **Azure Best Practices** - Secure, production-grade guidance
|
|
256
380
|
- ๐ฅ๏ธ **Azure CLI Generate** - Generate Azure CLI commands from natural language
|
|
257
381
|
- ๐ **Azure Communication Services** - SMS messaging and communication
|
|
258
|
-
-
|
|
382
|
+
- ๏ฟฝ **Azure Compute** - Virtual Machine, Virtual Machine Scale Set, and Disk management
|
|
383
|
+
- ๏ฟฝ๐ **Azure Confidential Ledger** - Tamper-proof ledger operations
|
|
259
384
|
- ๐ฆ **Azure Container Apps** - Container hosting
|
|
260
385
|
- ๐ฆ **Azure Container Registry (ACR)** - Container registry management
|
|
261
386
|
- ๐ **Azure Cosmos DB** - NoSQL database operations
|
|
262
387
|
- ๐งฎ **Azure Data Explorer** - Analytics queries and KQL
|
|
263
388
|
- ๐ฌ **Azure Database for MySQL** - MySQL database management
|
|
264
389
|
- ๐ **Azure Database for PostgreSQL** - PostgreSQL database management
|
|
390
|
+
- ๐ญ **Azure Device Registry** - Device Registry namespace management
|
|
265
391
|
- ๐ **Azure Event Grid** - Event routing and management
|
|
266
|
-
-
|
|
392
|
+
- ๐ **Azure File Shares** - Azure managed file share operations
|
|
393
|
+
- โก **Azure Functions** - Function App management and functions project files, language support, and templates source code
|
|
267
394
|
- ๐ **Azure Key Vault** - Secrets, keys, and certificates
|
|
268
395
|
- โธ๏ธ **Azure Kubernetes Service (AKS)** - Container orchestration
|
|
269
396
|
- ๐ฆ **Azure Load Testing** - Performance testing
|
|
270
397
|
- ๐ **Azure Managed Grafana** - Monitoring dashboards
|
|
271
398
|
- ๐๏ธ **Azure Managed Lustre** - High-performance Lustre filesystem operations
|
|
272
399
|
- ๐ช **Azure Marketplace** - Product discovery
|
|
273
|
-
-
|
|
400
|
+
- ๐ **Azure Migrate** - Platform Landing Zone generation and modification guidance
|
|
401
|
+
- ๐ **Azure Monitor** - Logging, metrics, health monitoring, and instrumentation onboarding/migration workflow for local applications
|
|
402
|
+
- โ๏ธ **Azure Policy** - Policies set to enforce organizational standards
|
|
274
403
|
- โ๏ธ **Azure Native ISV Services** - Third-party integrations
|
|
275
404
|
- ๐ก๏ธ **Azure Quick Review CLI** - Compliance scanning
|
|
276
405
|
- ๐ **Azure Quota** - Resource quota and usage management
|
|
@@ -278,14 +407,17 @@ The Azure MCP Server provides tools for interacting with **40+ Azure service are
|
|
|
278
407
|
- ๐ด **Azure Redis Cache** - In-memory data store
|
|
279
408
|
- ๐๏ธ **Azure Resource Groups** - Resource organization
|
|
280
409
|
- ๐ **Azure Service Bus** - Message queuing
|
|
410
|
+
- ๐งต **Azure Service Fabric** - Managed cluster node operations
|
|
281
411
|
- ๐ฅ **Azure Service Health** - Resource health status and availability
|
|
282
412
|
- ๐๏ธ **Azure SQL Database** - Relational database management
|
|
283
413
|
- ๐๏ธ **Azure SQL Elastic Pool** - Database resource sharing
|
|
284
414
|
- ๐๏ธ **Azure SQL Server** - Server administration
|
|
285
415
|
- ๐พ **Azure Storage** - Blob storage
|
|
416
|
+
- **Azure Storage Sync** - Azure File Sync management operations
|
|
286
417
|
- ๐ **Azure Subscription** - Subscription management
|
|
287
418
|
- ๐๏ธ **Azure Terraform Best Practices** - Infrastructure as code guidance
|
|
288
419
|
- ๐ฅ๏ธ **Azure Virtual Desktop** - Virtual desktop infrastructure
|
|
420
|
+
- ๐๏ธ **Azure Well-Architected Framework** - Architectural best practices and design patterns
|
|
289
421
|
- ๐ **Azure Workbooks** - Custom visualizations
|
|
290
422
|
- ๐๏ธ **Bicep** - Azure resource templates
|
|
291
423
|
- ๐๏ธ **Cloud Architect** - Guided architecture design
|
|
@@ -296,10 +428,13 @@ The Azure MCP Server provides tools for interacting with **40+ Azure service are
|
|
|
296
428
|
|
|
297
429
|
- See our [official documentation on learn.microsoft.com](https://learn.microsoft.com/azure/developer/azure-mcp-server/) to learn how to use the Azure MCP Server to interact with Azure resources through natural language commands from AI agents and other types of clients.
|
|
298
430
|
- For additional command documentation and examples, see [Azure MCP Commands](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/docs/azmcp-commands.md).
|
|
431
|
+
- Use [Prompt Templates](https://github.com/microsoft/mcp/blob/main/docs/prompt-templates.md) to set tenant and subscription context once at the beginning of your Copilot session, avoiding repetitive information in subsequent prompts.
|
|
299
432
|
|
|
300
433
|
## Feedback and Support
|
|
301
434
|
|
|
302
435
|
- Check the [Troubleshooting guide](https://aka.ms/azmcp/troubleshooting) to diagnose and resolve common issues with the Azure MCP Server.
|
|
436
|
+
- Review the [Known Issues](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/KNOWN-ISSUES.md) for current limitations and workarounds.
|
|
437
|
+
- For advanced troubleshooting, you can enable [support logging](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/TROUBLESHOOTING.md#support-logging) using the `--dangerously-write-support-logs-to-dir` option.
|
|
303
438
|
- We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Azure MCP server.
|
|
304
439
|
- ๐ [Open an issue](https://github.com/microsoft/mcp/issues) in the public GitHub repository โ weโd love to hear from you!
|
|
305
440
|
|
|
@@ -321,9 +456,27 @@ The software may collect information about you and your use of the software and
|
|
|
321
456
|
|
|
322
457
|
### Telemetry Configuration
|
|
323
458
|
|
|
324
|
-
Telemetry collection is on by default.
|
|
459
|
+
Telemetry collection is on by default. The server supports two telemetry streams:
|
|
460
|
+
|
|
461
|
+
1. **User-provided telemetry**: If you configure your own Application Insights connection string via the `APPLICATIONINSIGHTS_CONNECTION_STRING` environment variable, telemetry will be sent to your Application Insights resource.
|
|
462
|
+
|
|
463
|
+
2. **Microsoft telemetry**: By default, telemetry is also sent to Microsoft to help improve the product. This can be disabled separately from user-provided telemetry. See [Disabling All Telemetry](#disabling-all-telemetry) section below for more details.
|
|
464
|
+
|
|
465
|
+
#### Disabling All Telemetry
|
|
466
|
+
|
|
467
|
+
To disable all telemetry collection (both user-provided and Microsoft), set the environment variable `AZURE_MCP_COLLECT_TELEMETRY` to `false`:
|
|
468
|
+
|
|
469
|
+
```bash
|
|
470
|
+
export AZURE_MCP_COLLECT_TELEMETRY=false
|
|
471
|
+
```
|
|
472
|
+
|
|
473
|
+
#### Disabling Microsoft Telemetry Only
|
|
474
|
+
|
|
475
|
+
To disable only Microsoft telemetry collection while keeping your own Application Insights telemetry active, set the environment variable `AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT` to `false`:
|
|
325
476
|
|
|
326
|
-
|
|
477
|
+
```bash
|
|
478
|
+
export AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT=false
|
|
479
|
+
```
|
|
327
480
|
|
|
328
481
|
## Compliance Responsibility
|
|
329
482
|
|
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.31",
|
|
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,14 +33,15 @@
|
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-linux-
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.31",
|
|
37
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.31",
|
|
38
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.31",
|
|
39
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.31",
|
|
40
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.31",
|
|
41
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.31"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|
|
45
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"mcpName": "com.microsoft/azure"
|
|
46
47
|
}
|