@azure/mcp 2.0.0-beta.13 → 2.0.0-beta.14
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 +11 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -107,6 +107,10 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
107
107
|
* List Microsoft Foundry agent threads
|
|
108
108
|
* Get messages of a Microsoft Foundry thread
|
|
109
109
|
|
|
110
|
+
### 📊 Azure Advisor
|
|
111
|
+
|
|
112
|
+
* "List my Advisor recommendations"
|
|
113
|
+
|
|
110
114
|
### 🔎 Azure AI Search
|
|
111
115
|
|
|
112
116
|
* "What indexes do I have in my Azure AI Search service 'mysvc'?"
|
|
@@ -275,12 +279,18 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
275
279
|
* "Get details about my Storage container"
|
|
276
280
|
* "Upload my file to the blob container"
|
|
277
281
|
|
|
282
|
+
### 🔄 Azure Migrate
|
|
283
|
+
|
|
284
|
+
* "Generate a Platform Landing Zone"
|
|
285
|
+
* "Turn off DDoS protection in my Platform Landing Zone"
|
|
286
|
+
* "Turn off Bastion host in my Platform Landing Zone"
|
|
278
287
|
|
|
279
288
|
## Complete List of Supported Azure Services
|
|
280
289
|
|
|
281
290
|
The Azure MCP Server provides tools for interacting with **41+ Azure service areas**:
|
|
282
291
|
|
|
283
292
|
- 🧮 **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
293
|
+
- 📊 **Azure Advisor** - Advisor recommendations
|
|
284
294
|
- 🔎 **Azure AI Search** - Search engine/vector database operations
|
|
285
295
|
- 🎤 **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
|
|
286
296
|
- ⚙️ **Azure App Configuration** - Configuration management
|
|
@@ -304,6 +314,7 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
304
314
|
- 🚀 **Azure Managed Grafana** - Monitoring dashboards
|
|
305
315
|
- 🗃️ **Azure Managed Lustre** - High-performance Lustre filesystem operations
|
|
306
316
|
- 🏪 **Azure Marketplace** - Product discovery
|
|
317
|
+
- 🔄 **Azure Migrate** - Platform Landing Zone generation and modification guidance
|
|
307
318
|
- 📈 **Azure Monitor** - Logging, metrics, and health monitoring
|
|
308
319
|
- ⚖️ **Azure Policy** - Policies set to enforce organizational standards
|
|
309
320
|
- ⚙️ **Azure Native ISV Services** - Third-party integrations
|
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.14",
|
|
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,12 +33,12 @@
|
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-darwin-
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-darwin-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.14",
|
|
37
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.14",
|
|
38
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.14",
|
|
39
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.14",
|
|
40
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.14",
|
|
41
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.14"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|