@azure/mcp 2.0.0-beta.27 → 2.0.0-beta.28
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 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -96,10 +96,6 @@ Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/bl
|
|
|
96
96
|
* List Microsoft Foundry agents
|
|
97
97
|
* Connect and query Microsoft Foundry agents
|
|
98
98
|
* Evaluate Microsoft Foundry agents
|
|
99
|
-
* Get SDK samples for interacting with Microsoft Foundry agent
|
|
100
|
-
* Create Microsoft Foundry agent threads
|
|
101
|
-
* List Microsoft Foundry agent threads
|
|
102
|
-
* Get messages of a Microsoft Foundry thread
|
|
103
99
|
|
|
104
100
|
### 📊 Azure Advisor
|
|
105
101
|
|
|
@@ -276,6 +272,14 @@ Example prompts that generate Azure CLI commands:
|
|
|
276
272
|
|
|
277
273
|
* "Query my Log Analytics workspace"
|
|
278
274
|
|
|
275
|
+
### 🧭 Azure Monitor Instrumentation
|
|
276
|
+
|
|
277
|
+
* "List available Azure Monitor onboarding learning resources"
|
|
278
|
+
* "Get the learning resource at 'concepts/dotnet/opentelemetry-pipeline.md'"
|
|
279
|
+
* "Start Azure Monitor instrumentation orchestration for my local workspace"
|
|
280
|
+
* "Continue to the next orchestration step after I complete the previous action"
|
|
281
|
+
* "Send brownfield analysis findings to continue migration planning"
|
|
282
|
+
|
|
279
283
|
### 🔧 Azure Resource Management
|
|
280
284
|
|
|
281
285
|
* "List my resource groups"
|
|
@@ -315,9 +319,9 @@ Example prompts that generate Azure CLI commands:
|
|
|
315
319
|
|
|
316
320
|
### 🏛️ Azure Well-Architected Framework
|
|
317
321
|
|
|
322
|
+
* "List all services with Well-Architected Framework guidance"
|
|
323
|
+
* "What services have architectural guidance?"
|
|
318
324
|
* "Get Well-Architected Framework guidance for App Service"
|
|
319
|
-
* "What's the WAF guidance for a VM?"
|
|
320
|
-
* "Show me the best practices for virtual machines"
|
|
321
325
|
* "What's the architectural guidance for Azure Cosmos DB?"
|
|
322
326
|
|
|
323
327
|
## Complete List of Supported Azure Services
|
|
@@ -353,6 +357,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
353
357
|
- 🏪 **Azure Marketplace** - Product discovery
|
|
354
358
|
- 🔄 **Azure Migrate** - Platform Landing Zone generation and modification guidance
|
|
355
359
|
- 📈 **Azure Monitor** - Logging, metrics, and health monitoring
|
|
360
|
+
- 🧭 **Azure Monitor Instrumentation** - Deterministic onboarding and migration workflow for instrumenting local applications
|
|
356
361
|
- ⚖️ **Azure Policy** - Policies set to enforce organizational standards
|
|
357
362
|
- ⚙️ **Azure Native ISV Services** - Third-party integrations
|
|
358
363
|
- 🛡️ **Azure Quick Review CLI** - Compliance scanning
|
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.28",
|
|
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-
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.28",
|
|
37
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.28",
|
|
38
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.28",
|
|
39
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.28",
|
|
40
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.28",
|
|
41
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.28"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|