@azure/mcp 0.0.11 → 0.0.12
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 +7 -0
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -17,6 +17,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
|
|
|
17
17
|
|
|
18
18
|
- "List my Azure storage accounts"
|
|
19
19
|
- "Show me all my Cosmos DB databases"
|
|
20
|
+
- "What indexes do I have in my Azure AI Search service 'mysvc'?"
|
|
20
21
|
- "List my resource groups"
|
|
21
22
|
- "Show me the tables in my Storage account"
|
|
22
23
|
- "List containers in my Cosmos DB database"
|
|
@@ -24,6 +25,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
|
|
|
24
25
|
|
|
25
26
|
### 📊 Query & Analyze
|
|
26
27
|
- "Query my Log Analytics workspace"
|
|
28
|
+
- "Let's search this index for 'my search query'"
|
|
27
29
|
|
|
28
30
|
### ⚙️ Manage Configuration
|
|
29
31
|
|
|
@@ -48,6 +50,11 @@ The Azure MCP Server creates a seamless integration between AI agents and Azure
|
|
|
48
50
|
|
|
49
51
|
The Azure MCP Server provides tools for interacting with the following Azure services:
|
|
50
52
|
|
|
53
|
+
### 🔎 Azure AI Search (search engine/vector database)
|
|
54
|
+
- List Azure AI Search services
|
|
55
|
+
- List indexes and look at their schema and configuration
|
|
56
|
+
- Query search indexes
|
|
57
|
+
|
|
51
58
|
### 📊 Azure Cosmos DB (NoSQL Databases)
|
|
52
59
|
- List Cosmos DB accounts
|
|
53
60
|
- List and query databases
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"homepage": "https://github.com/Azure/azure-mcp#readme",
|
|
@@ -25,18 +25,19 @@
|
|
|
25
25
|
},
|
|
26
26
|
"os": [
|
|
27
27
|
"darwin",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
28
|
+
"linux",
|
|
29
|
+
"win32"
|
|
30
30
|
],
|
|
31
31
|
"cpu": [
|
|
32
32
|
"x64",
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-darwin-x64": "0.0.
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-darwin-x64": "0.0.12",
|
|
37
|
+
"@azure/mcp-linux-arm64": "0.0.12",
|
|
38
|
+
"@azure/mcp-darwin-arm64": "0.0.12",
|
|
39
|
+
"@azure/mcp-win32-x64": "0.0.12",
|
|
40
|
+
"@azure/mcp-linux-x64": "0.0.12",
|
|
41
|
+
"@azure/mcp-win32-arm64": "0.0.12"
|
|
41
42
|
}
|
|
42
43
|
}
|