@azure/mcp 0.0.11 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  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,12 +50,22 @@ 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
54
61
  - Manage containers and items
55
62
  - Execute SQL queries against containers
56
63
 
64
+ ### 🐘 Azure Database for PostgreSQL - Flexible Server
65
+ - List and query databases.
66
+ - List and get schema for tables.
67
+ - List, get configuration and get parameters for servers.
68
+
57
69
  ### 💾 Azure Storage
58
70
  - List Storage accounts
59
71
  - Manage blob containers and blobs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
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.11",
37
- "@azure/mcp-darwin-arm64": "0.0.11",
38
- "@azure/mcp-win32-x64": "0.0.11",
39
- "@azure/mcp-linux-x64": "0.0.11",
40
- "@azure/mcp-win32-arm64": "0.0.11"
36
+ "@azure/mcp-darwin-x64": "0.0.13",
37
+ "@azure/mcp-linux-arm64": "0.0.13",
38
+ "@azure/mcp-darwin-arm64": "0.0.13",
39
+ "@azure/mcp-win32-x64": "0.0.13",
40
+ "@azure/mcp-linux-x64": "0.0.13",
41
+ "@azure/mcp-win32-arm64": "0.0.13"
41
42
  }
42
43
  }