@azure/mcp 0.8.1 → 0.8.3

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 +135 -88
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -2,43 +2,45 @@
2
2
 
3
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. This project is in Public Preview and implementation may significantly change prior to our General Availability.
4
4
 
5
- [![Install Azure MCP in VS Code](https://img.shields.io/badge/VS_Code-Install_Azure_MCP_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:extension/ms-azuretools.vscode-azure-mcp-server) [![Install Azure MCP in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Azure_MCP_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode-insiders:extension/ms-azuretools.vscode-azure-mcp-server) [![Install Azure MCP in Visual Studio](https://img.shields.io/badge/Visual_Studio-Install_Azure_MCP_Server-C16FDE?style=flat-square&logo=visualstudio&logoColor=white)](https://marketplace.visualstudio.com/items?itemName=github-copilot-azure.GitHubCopilotForAzure2022)
5
+ [![Install Azure MCP in VS Code](https://img.shields.io/badge/VS_Code-Install_Azure_MCP_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:extension/ms-azuretools.vscode-azure-mcp-server) [![Install Azure MCP in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Azure_MCP_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode-insiders:extension/ms-azuretools.vscode-azure-mcp-server) [![Install Azure MCP in Visual Studio](https://img.shields.io/badge/Visual_Studio-Install_Azure_MCP_Server-C16FDE?style=flat-square&logo=visualstudio&logoColor=white)](https://marketplace.visualstudio.com/items?itemName=github-copilot-azure.GitHubCopilotForAzure2022) [![Install Azure MCP Server](https://img.shields.io/badge/IntelliJ%20IDEA-Install%20Azure%20MCP%20Server-1495b1?style=flat-square&logo=intellijidea&logoColor=white)](https://plugins.jetbrains.com/plugin/8053)
6
6
 
7
7
 
8
8
  ## Table of Contents
9
9
  - [Overview](#overview)
10
10
  - [Installation](#installation)
11
- - [IDE Extensions](#ide-extensions)
11
+ - [IDE](#ide)
12
12
  - [VS Code (Recommended)](#vs-code-recommended)
13
13
  - [Visual Studio 2022](#visual-studio-2022)
14
14
  - [IntelliJ IDEA](#intellij-idea)
15
- - [Package Managers](#package-managers)
15
+ - [Manual Setup](#manual-setup)
16
+ - [Package Manager](#package-manager)
16
17
  - [NuGet](#nuget)
17
18
  - [NPM](#npm)
18
19
  - [Docker](#docker)
19
- - [Custom Clients](#custom-clients)
20
20
  - [Usage](#usage)
21
21
  - [Getting Started](#getting-started)
22
22
  - [What can you do with the Azure MCP Server?](#what-can-you-do-with-the-azure-mcp-server)
23
23
  - [Complete List of Supported Azure Services](#complete-list-of-supported-azure-services)
24
- - [Support & Reference](#support-and-reference)
24
+ - [Support and Reference](#support-and-reference)
25
25
  - [Documentation](#documentation)
26
- - [Feedback & Support](#feedback-and-support)
26
+ - [Feedback and Support](#feedback-and-support)
27
27
  - [Security](#security)
28
28
  - [Data Collection](#data-collection)
29
- - [Contributing & Code of Conduct](#contributing)
29
+ - [Contributing and Code of Conduct](#contributing)
30
30
 
31
- # <a id="overview"></a> Overview
31
+ # Overview
32
32
 
33
33
  **Azure MCP Server** supercharges your agents with Azure context across **30+ different Azure services**.
34
34
 
35
- # <a id="installation"></a> Installation
35
+ # Installation
36
36
 
37
- ## <a id="ide-extensions"></a> 🧩 IDE Extensions
37
+ Install Azure MCP Server using either an IDE extension or package manager. Choose one method below.
38
38
 
39
- Follow these simple steps to start using Azure MCP with your favorite IDE. We recommend VS Code:
39
+ ## IDE
40
40
 
41
- ### <a id="vs-code-recommended"></a> 🔷 VS Code (Recommended)
41
+ Start using Azure MCP with your favorite IDE. We recommend VS Code:
42
+
43
+ ### VS Code (Recommended)
42
44
 
43
45
  1. Install either the stable or Insiders release of VS Code:
44
46
  * [💫 Stable release](https://code.visualstudio.com/download)
@@ -46,7 +48,7 @@ Follow these simple steps to start using Azure MCP with your favorite IDE. We r
46
48
  1. Install the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) and [GitHub Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat) extensions
47
49
  1. Install the [Azure MCP Server](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azure-mcp-server) extension
48
50
 
49
- ### <a id="visual-studio-2022"></a> 💜 Visual Studio 2022
51
+ ### Visual Studio 2022
50
52
 
51
53
  From within Visual Studio 2022 install [GitHub Copilot for Azure (VS 2022)](https://marketplace.visualstudio.com/items?itemName=github-copilot-azure.GitHubCopilotForAzure2022):
52
54
  1. Go to `Extensions | Manage Extensions...`
@@ -54,95 +56,118 @@ From within Visual Studio 2022 install [GitHub Copilot for Azure (VS 2022)](http
54
56
  3. Search for `Github Copilot for Azure`
55
57
  4. Click `Install`
56
58
 
57
- ### <a id="intellij-idea"></a> ☕ IntelliJ IDEA
59
+ ### IntelliJ IDEA
58
60
 
59
61
  1. Install either the [IntelliJ IDEA Ultimate](https://www.jetbrains.com/idea/download) or [IntelliJ IDEA Community](https://www.jetbrains.com/idea/download) edition.
60
62
  1. Install the [GitHub Copilot](https://plugins.jetbrains.com/plugin/17718-github-copilot) plugin.
61
63
  1. Install the [Azure Toolkit for Intellij](https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij) plugin.
62
64
 
63
- ## <a id="package-managers"></a> Package Managers
65
+ ### Manual Setup
66
+ Azure MCP Server can also be configured across other IDEs, CLIs, and MCP clients:
64
67
 
65
- ### <a id="nuget"></a> 🤖 NuGet
68
+ <details>
69
+ <summary>Manual setup instructions</summary>
66
70
 
67
- Microsoft publishes an official Azure MCP Server .NET Tool on NuGet: [Azure.Mcp](https://www.nuget.org/packages/Azure.Mcp).
71
+ #### Sample Configuration
68
72
 
69
- ### <a id="npm"></a> 📦 NPM
73
+ Copy this configuration to your client's MCP configuration file:
74
+ ```json
75
+ {
76
+ "mcpServers": {
77
+ "azure-mcp-server": {
78
+ "command": "npx",
79
+ "args": [
80
+ "-y",
81
+ "@azure/mcp@latest",
82
+ "server",
83
+ "start"
84
+ ]
85
+ }
86
+ }
87
+ }
88
+ ```
89
+ **Note:** When manually configuring Visual Studio and Visual Studio Code, use `servers` instead of `mcpServers` as the root object.
90
+
91
+ **Client-Specific Configuration**
92
+ | IDE | File Location | Documentation Link |
93
+ |-----|---------------|-------------------|
94
+ | **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) |
95
+ | **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://scottspence.com/posts/configuring-mcp-tools-in-claude-code) |
96
+ | **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) |
97
+ | **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
98
+ | **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) |
99
+ | **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
100
+ | **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
101
+ | **Windsurf** | `~/.codeium/windsurf/mcp_config.json` | [Windsurf Cascade MCP Integration](https://docs.windsurf.com/windsurf/cascade/mcp) |
102
+ </details>
70
103
 
71
- Microsoft publishes an official Azure MCP Server npm package for Node.js: [@azure/mcp](https://www.npmjs.com/package/@azure/mcp).
72
104
 
73
- ### <a id="docker"></a> 🐋 Docker
105
+ ## Package Manager
106
+ Package manager installation offers several advantages over IDE-specific setup, including centralized dependency management, CI/CD integration, support for headless/server environments, version control, and project portability.
74
107
 
75
- Microsoft publishes an official Azure MCP Server Docker container on the [Microsoft Artifact Registry](https://mcr.microsoft.com/artifact/mar/azure-sdk/azure-mcp).
108
+ Install Azure MCP Server via a package manager:
76
109
 
77
- <details>
78
- <summary>For a step-by-step Docker installation, follow these instructions:</summary>
79
-
80
- 1. Create an `.env` file with environment variables that [match one of the `EnvironmentCredential`](https://learn.microsoft.com/dotnet/api/azure.identity.environmentcredential) sets. For example, a `.env` file using a service principal could look like:
81
-
82
- ```bash
83
- AZURE_TENANT_ID={YOUR_AZURE_TENANT_ID}
84
- AZURE_CLIENT_ID={YOUR_AZURE_CLIENT_ID}
85
- AZURE_CLIENT_SECRET={YOUR_AZURE_CLIENT_SECRET}
86
- ```
87
-
88
- 2. Add `.vscode/mcp.json` or update existing MCP configuration. Replace `/full/path/to/.env` with a path to your `.env` file.
89
-
90
- ```json
91
- {
92
- "servers": {
93
- "Azure MCP Server": {
94
- "command": "docker",
95
- "args": [
96
- "run",
97
- "-i",
98
- "--rm",
99
- "--env-file",
100
- "/full/path/to/.env",
101
- "mcr.microsoft.com/azure-sdk/azure-mcp:latest",
102
- ]
103
- }
104
- }
105
- }
106
- ```
110
+ ### NuGet
107
111
 
108
- Optionally, use `--env` or `--volume` to pass authentication values.
109
- </details>
112
+ Install the .NET Tool: [Azure.Mcp](https://www.nuget.org/packages/Azure.Mcp).
110
113
 
111
- ## <a id="custom-clients"></a> 🤖 Custom Clients
114
+ ```bash
115
+ dotnet tool install --global Azure.Mcp
116
+ ```
112
117
 
113
- You can easily configure your MCP client to use the Azure MCP Server.
118
+ ### NPM
114
119
 
115
- <details>
116
- <summary>Have your client run the following command and access it via standard IO:</summary>
120
+ Install the Node.js package: [@azure/mcp](https://www.npmjs.com/package/@azure/mcp).
117
121
 
118
122
  ```bash
119
- npx -y @azure/mcp@latest server start
123
+ npm install -g @azure/mcp
120
124
  ```
121
125
 
122
- For example, add the following `mcp.json` to VS Code. Other clients will look similar, but may be structured slightly different. Consult the documentation of the custom client for details.
126
+ ### Docker
123
127
 
124
- 1. Example `mcp.json`:
128
+ Run the Azure MCP server as a Docker container for easy deployment and isolation. The container image is available at [mcr.microsoft.com/azure-sdk/azure-mcp](https://mcr.microsoft.com/artifact/mar/azure-sdk/azure-mcp).
125
129
 
126
- ```json
127
- {
128
- "servers": {
129
- "Azure MCP Server": {
130
- "command": "npx",
131
- "args": [
132
- "-y",
133
- "@azure/mcp@latest",
134
- "server",
135
- "start"
136
- ]
137
- }
130
+ <details>
131
+ <summary>Docker instructions</summary>
132
+
133
+ #### Create an env file with Azure credentials
134
+
135
+ 1. Create a `.env` file with Azure credentials ([see EnvironmentCredential options](https://learn.microsoft.com/dotnet/api/azure.identity.environmentcredential)):
136
+
137
+ ```bash
138
+ AZURE_TENANT_ID={YOUR_AZURE_TENANT_ID}
139
+ AZURE_CLIENT_ID={YOUR_AZURE_CLIENT_ID}
140
+ AZURE_CLIENT_SECRET={YOUR_AZURE_CLIENT_SECRET}
141
+ ```
142
+
143
+ #### Configure your MCP client to use Docker
144
+
145
+ 2. Add or update existing `mcp.json`. Replace `/full/path/to/your/.env` with the actual `.env` file path.
146
+
147
+ ```json
148
+ {
149
+ "mcpServers": {
150
+ "Azure MCP Server": {
151
+ "command": "docker",
152
+ "args": [
153
+ "run",
154
+ "-i",
155
+ "--rm",
156
+ "--env-file",
157
+ "/full/path/to/your/.env",
158
+ "mcr.microsoft.com/azure-sdk/azure-mcp:latest"
159
+ ]
160
+ }
138
161
  }
139
- }
140
- ```
162
+ }
163
+ ```
141
164
  </details>
142
165
 
143
- # <a id="usage"></a> Usage
166
+ To use Azure Entra ID, review the [troubleshooting guide](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/TROUBLESHOOTING.md#using-azure-entra-id-with-docker).
167
+
168
+ # Usage
144
169
 
145
- ## <a id="getting-started"></a> 🚀 Getting Started
170
+ ## Getting Started
146
171
 
147
172
  1. Open GitHub Copilot in [VS Code](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode) or [IntelliJ](https://github.blog/changelog/2025-05-19-agent-mode-and-mcp-support-for-copilot-in-jetbrains-eclipse-and-xcode-now-in-public-preview/#agent-mode) and switch to Agent mode.
148
173
  1. Click `refresh` on the tools list
@@ -153,9 +178,9 @@ For example, add the following `mcp.json` to VS Code. Other clients will look s
153
178
  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
154
179
  - 👉 [Open an issue in the public repository](https://github.com/microsoft/mcp/issues/new/choose)
155
180
 
156
- ## <a id="what-can-you-do-with-the-azure-mcp-server"></a> ✨ What can you do with the Azure MCP Server?
181
+ ## What can you do with the Azure MCP Server?
157
182
 
158
- The Azure MCP Server supercharges your agents with Azure context. Here are some cool prompts you can try:
183
+ The Azure MCP Server supercharges your agents with Azure context. Here are some cool prompts you can try:
159
184
 
160
185
  ### 🧮 Azure AI Foundry
161
186
 
@@ -170,6 +195,13 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
170
195
  * "What indexes do I have in my Azure AI Search service 'mysvc'?"
171
196
  * "Let's search this index for 'my search query'"
172
197
 
198
+ ### 🎤 Azure AI Services Speech
199
+
200
+ * "Convert this audio file to text using Azure Speech Services"
201
+ * "Recognize speech from my audio file with language detection"
202
+ * "Transcribe speech from audio with profanity filtering"
203
+ * "Transcribe audio with phrase hints for better accuracy"
204
+
173
205
  ### ⚙️ Azure App Configuration
174
206
 
175
207
  * "List my App Configuration stores"
@@ -179,6 +211,18 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
179
211
 
180
212
  * "Help me diagnose issues with my app"
181
213
 
214
+ ### 🕸️ Azure App Service
215
+
216
+ * "List the websites in my subscription"
217
+ * "Show me the websites in my 'my-resource-group' resource group"
218
+ * "Get the details for website 'my-website'"
219
+ * "Get the details for app service plan 'my-app-service-plan'"
220
+
221
+ ### 📦 Azure Container Apps
222
+
223
+ * "List the container apps in my subscription"
224
+ * "Show me the container apps in my 'my-resource-group' resource group"
225
+
182
226
  ### 📦 Azure Container Registry (ACR)
183
227
 
184
228
  * "List all my Azure Container Registries"
@@ -211,6 +255,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
211
255
  * "List Event Grid subscriptions for topic 'my-topic' in subscription 'my-subscription'"
212
256
  * "List Event Grid Subscriptions in subscription 'my-subscription'"
213
257
  * "List Event Grid subscriptions for topic 'my-topic' in location 'my-location'"
258
+ * "Publish an event with data '{\"name\": \"test\"}' to topic 'my-topic' using CloudEvents schema"
259
+ * "Send custom event data to Event Grid topic 'analytics-events' with EventGrid schema"
214
260
 
215
261
  ### 🔑 Azure Key Vault
216
262
 
@@ -263,14 +309,17 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
263
309
  * "Upload my file to the blob container"
264
310
 
265
311
 
266
- ## <a id="complete-list-of-supported-azure-services"></a> 🛠️ Complete List of Supported Azure Services
312
+ ## Complete List of Supported Azure Services
267
313
 
268
314
  The Azure MCP Server provides tools for interacting with **30+ Azure service areas**:
269
315
 
270
316
  - 🧮 **Azure AI Foundry** - AI model management, AI model deployment, and knowledge index management
271
317
  - 🔎 **Azure AI Search** - Search engine/vector database operations
318
+ - 🎤 **Azure AI Services Speech** - Speech-to-text recognition
272
319
  - ⚙️ **Azure App Configuration** - Configuration management
320
+ - 🕸️ **Azure App Service** - Web app hosting
273
321
  - 🛡️ **Azure Best Practices** - Secure, production-grade guidance
322
+ - 📦 **Azure Container Apps** - Container hosting
274
323
  - 📦 **Azure Container Registry (ACR)** - Container registry management
275
324
  - 📊 **Azure Cosmos DB** - NoSQL database operations
276
325
  - 🧮 **Azure Data Explorer** - Analytics queries and KQL
@@ -304,26 +353,26 @@ The Azure MCP Server provides tools for interacting with **30+ Azure service are
304
353
  - 🏗️ **Bicep** - Azure resource templates
305
354
  - 🏗️ **Cloud Architect** - Guided architecture design
306
355
 
307
- # <a id="support-and-reference"></a> Support & Reference
356
+ # Support and Reference
308
357
 
309
- ## <a id="documentation"></a> Documentation
358
+ ## Documentation
310
359
 
311
360
  - 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.
312
361
  - For additional command documentation and examples, see [Azure MCP Commands](https://github.com/microsoft/mcp/blob/main/docs/azmcp-commands.md).
313
362
 
314
- ## <a id="feedback-and-support"></a> Feedback & Support
363
+ ## Feedback and Support
315
364
 
316
365
  - Check the [Troubleshooting guide](https://aka.ms/azmcp/troubleshooting) to diagnose and resolve common issues with the Azure MCP Server.
317
366
  - We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Azure MCP server.
318
367
  - 👉 [Open an issue](https://github.com/microsoft/mcp/issues) in the public GitHub repository — we’d love to hear from you!
319
368
 
320
- ## <a id="security"></a> 🛡️ Security
369
+ ## Security
321
370
 
322
371
  Your credentials are always handled securely through the official [Azure Identity SDK](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/identity/Azure.Identity/README.md) - **we never store or manage tokens directly**.
323
372
 
324
373
  MCP as a phenomenon is very novel and cutting-edge. As with all new technology standards, consider doing a security review to ensure any systems that integrate with MCP servers follow all regulations and standards your system is expected to adhere to. This includes not only the Azure MCP Server, but any MCP client/agent that you choose to implement down to the model provider.
325
374
 
326
- ## <a id="data-collection"></a> Data Collection
375
+ ## Data Collection
327
376
 
328
377
  The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's [privacy statement](https://www.microsoft.com/privacy/privacystatement). You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
329
378
 
@@ -333,9 +382,7 @@ Telemetry collection is on by default.
333
382
 
334
383
  To opt out, set the environment variable `AZURE_MCP_COLLECT_TELEMETRY` to `false` in your environment.
335
384
 
336
-
337
-
338
- ## <a id="contributing"></a> 👥 Contributing
385
+ ## Contributing
339
386
 
340
387
  We welcome contributions to the Azure MCP Server! Whether you're fixing bugs, adding new features, or improving documentation, your contributions are welcome.
341
388
 
@@ -347,7 +394,7 @@ Please read our [Contributing Guide](https://github.com/microsoft/mcp/blob/main/
347
394
  * 🔄 Making pull requests
348
395
 
349
396
 
350
- ## <a id="code-of-conduct"></a> 🤝 Code of Conduct
397
+ ## Code of Conduct
351
398
 
352
399
  This project has adopted the
353
400
  [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.8.1",
3
+ "version": "0.8.3",
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
  "x64"
34
34
  ],
35
35
  "optionalDependencies": {
36
- "@azure/mcp-linux-arm64": "0.8.1",
37
- "@azure/mcp-linux-x64": "0.8.1",
38
- "@azure/mcp-darwin-arm64": "0.8.1",
39
- "@azure/mcp-darwin-x64": "0.8.1",
40
- "@azure/mcp-win32-arm64": "0.8.1",
41
- "@azure/mcp-win32-x64": "0.8.1"
36
+ "@azure/mcp-linux-arm64": "0.8.3",
37
+ "@azure/mcp-linux-x64": "0.8.3",
38
+ "@azure/mcp-darwin-arm64": "0.8.3",
39
+ "@azure/mcp-darwin-x64": "0.8.3",
40
+ "@azure/mcp-win32-arm64": "0.8.3",
41
+ "@azure/mcp-win32-x64": "0.8.3"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"