@azure/mcp-win32-arm64 3.0.0-beta.11 → 3.0.0-beta.13
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 +22 -0
- package/dist/appsettings.json +3 -1
- package/dist/azmcp.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -369,6 +369,27 @@ Example prompts that generate Azure CLI commands:
|
|
|
369
369
|
* "Show me details about my Azure SQL server 'myserver'"
|
|
370
370
|
* "Delete my Azure SQL server 'myserver'"
|
|
371
371
|
|
|
372
|
+
### 🤖 Azure SRE Agent
|
|
373
|
+
|
|
374
|
+
* "List my Azure SRE Agent resources"
|
|
375
|
+
* "Show me the SRE sub-agent named 'incident-bot' on agent 'sre-prod'"
|
|
376
|
+
* "Create a new SRE sub-agent named 'incident-bot' with these instructions on agent 'sre-prod'"
|
|
377
|
+
* "List the connectors registered on SRE Agent 'sre-prod'"
|
|
378
|
+
* "Register a Kusto connector on SRE Agent 'sre-prod' pointing at cluster 'https://help.kusto.windows.net'"
|
|
379
|
+
* "Register an MCP connector on SRE Agent 'sre-prod' for the Azure MCP server"
|
|
380
|
+
* "List the safety hooks configured on SRE Agent 'sre-prod'"
|
|
381
|
+
* "Activate the 'pre-prod-approval' hook for thread 'thread-123' on SRE Agent 'sre-prod'"
|
|
382
|
+
* "Create a new investigation thread on SRE Agent 'sre-prod' and ask it to look into elevated 5xx in payments-api"
|
|
383
|
+
* "Send a follow-up message to thread 'thread-123' on SRE Agent 'sre-prod'"
|
|
384
|
+
* "Run an autonomous investigation on SRE Agent 'sre-prod' with up to 20 iterations"
|
|
385
|
+
* "List scheduled tasks on SRE Agent 'sre-prod'"
|
|
386
|
+
* "Create a scheduled task on SRE Agent 'sre-prod' that runs every 15 minutes"
|
|
387
|
+
* "List active incidents on SRE Agent 'sre-prod'"
|
|
388
|
+
* "Declare an incident on SRE Agent 'sre-prod' for elevated error rates"
|
|
389
|
+
* "Generate a remediation workflow on SRE Agent 'sre-prod' from the latest investigation"
|
|
390
|
+
* "Search SRE Agent 'sre-prod' memories for prior occurrences of this alert"
|
|
391
|
+
* "Produce a remediation plan on SRE Agent 'sre-prod' for incident 'inc-42'"
|
|
392
|
+
|
|
372
393
|
### 💾 Azure Storage
|
|
373
394
|
|
|
374
395
|
* "List my Azure storage accounts"
|
|
@@ -456,6 +477,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
456
477
|
- 🗄️ **Azure SQL Database** - Relational database management
|
|
457
478
|
- 🗄️ **Azure SQL Elastic Pool** - Database resource sharing
|
|
458
479
|
- 🗄️ **Azure SQL Server** - Server administration
|
|
480
|
+
- 🤖 **Azure SRE Agent** - SRE Agent investigations, sub-agents, connectors, hooks, threads, scheduled tasks, incidents, workflows, memories, and remediation plans
|
|
459
481
|
- 💾 **Azure Storage** - Blob storage
|
|
460
482
|
- **Azure Storage Sync** - Azure File Sync management operations
|
|
461
483
|
- 📋 **Azure Subscription** - Subscription management
|
package/dist/appsettings.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"RootCommandGroupName": "azmcp",
|
|
3
3
|
"Name": "Azure.Mcp.Server",
|
|
4
|
-
"
|
|
4
|
+
"ShortName": "azure",
|
|
5
|
+
"DisplayName": "Azure MCP Server",
|
|
6
|
+
"Description": "This server/tool provides real-time, programmatic access to all Azure products, services, and resources, as well as all interactions with the Azure Developer CLI (azd). Use this tool for any Azure control plane or data plane operation, including resource management and automation. To discover available capabilities, call the tool with the \"learn\" parameter to get a list of top-level tools. To explore further, set \"learn\" and specify a tool name to retrieve supported commands and their parameters. To execute an action, set the \"tool\", \"command\", and convert the user's intent into the \"parameters\" based on the discovered schema. Always use this tool for any Azure or \"azd\" related operation requiring up-to-date, dynamic, and interactive capabilities. Always include the \"intent\" parameter to specify the operation you want to perform."
|
|
5
7
|
}
|
package/dist/azmcp.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp-win32-arm64",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.13",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure, for win32 on arm64",
|
|
5
5
|
"author": "Microsoft",
|
|
6
6
|
"homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme",
|