@azure/mcp-linux-arm64 3.0.0-beta.42 → 3.0.0-beta.43
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 +16 -3
- package/dist/azmcp +0 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -295,12 +295,24 @@ Example prompts that generate Azure CLI commands:
|
|
|
295
295
|
* "Check authentication and connectivity for my ADME endpoint and data partition"
|
|
296
296
|
* "Get an ADME schema by kind"
|
|
297
297
|
* "List shared Well schemas from my ADME data partition"
|
|
298
|
+
* "Fetch multiple OSDU records by id from my ADME data partition"
|
|
299
|
+
* "Get an OSDU record by id or version from my ADME data partition"
|
|
300
|
+
* "List OSDU record ids for a kind in my ADME data partition"
|
|
301
|
+
* "List all versions of an OSDU record in my ADME data partition"
|
|
298
302
|
|
|
299
303
|
### 🧮 Azure Data Explorer
|
|
300
304
|
|
|
301
305
|
* "Get Azure Data Explorer databases in cluster 'mycluster'"
|
|
302
306
|
* "Sample 10 rows from table 'StormEvents' in Azure Data Explorer database 'db1'"
|
|
303
307
|
|
|
308
|
+
### 🐘 Azure Database for PostgreSQL
|
|
309
|
+
|
|
310
|
+
* "List all PostgreSQL servers in my subscription"
|
|
311
|
+
* "Show me the tables in the PostgreSQL database 'mydb' in server 'myserver' as user 'myuser'"
|
|
312
|
+
* "Show me the schema of table 'users' in the PostgreSQL database 'mydb' in server 'myserver' as user 'myuser'"
|
|
313
|
+
* "Show me all items that contain the word 'error' in the PostgreSQL database 'mydb' in server 'myserver' as user 'myuser'"
|
|
314
|
+
* "Show me the configuration of PostgreSQL server 'myserver' in resource group 'my-resource-group' as user 'myuser'"
|
|
315
|
+
|
|
304
316
|
### 📣 Azure Event Grid
|
|
305
317
|
|
|
306
318
|
* "List all Event Grid topics in subscription 'my-subscription'"
|
|
@@ -382,7 +394,8 @@ Example prompts that generate Azure CLI commands:
|
|
|
382
394
|
|
|
383
395
|
### 📊 Azure Monitor
|
|
384
396
|
|
|
385
|
-
* "Query my Log Analytics workspace"
|
|
397
|
+
* "Query an Analytics table in my Log Analytics workspace"
|
|
398
|
+
* "Search a Basic or Auxiliary table in my Log Analytics workspace over the last day"
|
|
386
399
|
* "List my Azure Monitor Health Models"
|
|
387
400
|
* "Get details for my Azure Monitor Health Model 'my-health-model'"
|
|
388
401
|
|
|
@@ -525,7 +538,7 @@ The Azure MCP Server provides tools for interacting with **45+ Azure service are
|
|
|
525
538
|
- 📦 **Azure Container Apps** - Container hosting
|
|
526
539
|
- 📦 **Azure Container Registry (ACR)** - Container registry management
|
|
527
540
|
- 📊 **Azure Cosmos DB** - NoSQL database operations
|
|
528
|
-
- **Azure Data Manager for Energy** - Health checks and OSDU schema operations
|
|
541
|
+
- **Azure Data Manager for Energy** - Health checks and OSDU schema, record retrieval, and version history operations
|
|
529
542
|
- 🧮 **Azure Data Explorer** - Analytics queries and KQL
|
|
530
543
|
- 🐬 **Azure Database for MySQL** - MySQL database management
|
|
531
544
|
- 🐘 **Azure Database for PostgreSQL** - PostgreSQL database management
|
|
@@ -542,7 +555,7 @@ The Azure MCP Server provides tools for interacting with **45+ Azure service are
|
|
|
542
555
|
- 🗃️ **Azure Managed Lustre** - High-performance Lustre filesystem operations
|
|
543
556
|
- 🏪 **Azure Marketplace** - Product discovery
|
|
544
557
|
- 🔄 **Azure Migrate** - Platform Landing Zone generation and modification guidance
|
|
545
|
-
- 📈 **Azure Monitor** -
|
|
558
|
+
- 📈 **Azure Monitor** - Log queries, Basic and Auxiliary table search, metrics, health models, health monitoring, and instrumentation onboarding/migration workflow for local applications
|
|
546
559
|
- ⚖️ **Azure Policy** - Policies set to enforce organizational standards
|
|
547
560
|
- ⚙️ **Azure Native ISV Services** - Third-party integrations
|
|
548
561
|
- 🛡️ **Azure Quick Review CLI** - Compliance scanning
|
package/dist/azmcp
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp-linux-arm64",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.43",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure, for linux on arm64",
|
|
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": ">=22.0.0"
|