@azure/mcp 0.0.10 → 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.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. 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
@@ -95,7 +102,7 @@ The Azure MCP Server requires Node.js to install and run the server. If you don'
95
102
 
96
103
  ### VS Code + GitHub Copilot
97
104
 
98
- The Azure MCP Server provides Azure data plane tools. It can be used alone or with the [GitHub Copilot for Azure extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azure-github-copilot) in VS Code. If you're interested in broad developer support across a variety of Azure development scenarios not included in the Azure MCP Server, such as searching documentation on Microsoft Learn, we recommend this extension as well.
105
+ The Azure MCP Server provides Azure SDK and Azure CLI developer tools. It can be used alone or with the [GitHub Copilot for Azure extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azure-github-copilot) in VS Code. If you're interested in broad developer support across a variety of Azure development scenarios not included in the Azure MCP Server, such as searching documentation on Microsoft Learn, we recommend this extension as well.
99
106
 
100
107
  ### Prerequisites
101
108
  1. Install either the stable or Insiders release of VS Code:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.0.10",
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
- "win32",
29
- "linux"
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.10",
37
- "@azure/mcp-darwin-arm64": "0.0.10",
38
- "@azure/mcp-win32-x64": "0.0.10",
39
- "@azure/mcp-linux-x64": "0.0.10",
40
- "@azure/mcp-win32-arm64": "0.0.10"
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
  }