@azure/mcp 0.0.19 โ†’ 0.0.21

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 (3) hide show
  1. package/README.md +17 -5
  2. package/index.js +2 -2
  3. package/package.json +7 -7
package/README.md CHANGED
@@ -7,6 +7,16 @@ The Azure MCP Server implements the [MCP specification](https://modelcontextprot
7
7
 
8
8
  > Please note that this project is in Public Preview and implementation may significantly change prior to our General Availability.
9
9
 
10
+ ## ๐Ÿ“‘ Table of contents
11
+ 1. [๐ŸŽฏ Overview](#-overview)
12
+ 2. [๐Ÿ› ๏ธ Currently Supported Tools](#%EF%B8%8F-currently-supported-tools)
13
+ 3. [๐Ÿ”Œ Installation & Getting Started](#-getting-started)
14
+ 4. [๐Ÿงช Using Azure MCP Server](#-test-the-azure-mcp-server)
15
+ 5. [๐Ÿ“ Troubleshooting Issues](#-troubleshooting)
16
+ 6. [๐Ÿ‘ฅ Contributing to Azure MCP Server](#-contributing)
17
+
18
+
19
+
10
20
  ## ๐ŸŽฏ Overview
11
21
 
12
22
  ### โœจ What can you do with the Azure MCP Server?
@@ -82,11 +92,14 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
82
92
  - List and query Storage tables
83
93
  - Get container properties and metadata
84
94
 
85
- ### ๐Ÿ“ˆ Azure Monitor (Log Analytics)
95
+ ### ๐Ÿ“ˆ Azure Monitor
96
+ #### Log Analytics
86
97
  - List Log Analytics workspaces
87
98
  - Query logs using KQL
88
99
  - List available tables
89
- - Configure monitoring options
100
+
101
+ #### Health Models
102
+ - Get health of an entity
90
103
 
91
104
  ### โš™๏ธ Azure App Configuration
92
105
  - List App Configuration stores
@@ -99,10 +112,8 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
99
112
 
100
113
  ### ๐Ÿ“ฆ Azure Resource Groups
101
114
  - List resource groups
102
- - Resource group management operations
103
115
 
104
116
  ### ๐ŸšŒ Azure Service Bus
105
- - Peek at messages from subscriptions and queues
106
117
  - Examine properties and runtime information about queues, topics, and subscriptions
107
118
 
108
119
  ### ๐Ÿ”ง Azure CLI Extension
@@ -116,12 +127,13 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
116
127
  - Support for template discovery, template initialization, provisioning and deployment
117
128
  - Cross-platform compatibility
118
129
 
130
+ Agents and models can discover and learn best practices and usage guidelines for the `azd` MCP tool. For more information, see [AZD Best Practices](https://github.com/Azure/azure-mcp/tree/main/src/Resources/azd-best-practices.txt).
131
+
119
132
  ### ๐Ÿ›ก๏ธ Azure Best Practices
120
133
  - Get secure, production-grade Azure SDK best practices for effective code generation.
121
134
 
122
135
  For detailed command documentation and examples, see [Azure MCP Commands](https://github.com/Azure/azure-mcp/blob/main/docs/azmcp-commands.md).
123
136
 
124
-
125
137
  ## ๐Ÿ”Œ Getting Started
126
138
 
127
139
  The Azure MCP Server requires Node.js to install and run the server. If you don't have it installed, follow the instructions [here](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
package/index.js CHANGED
@@ -4,7 +4,7 @@ const os = require('os')
4
4
 
5
5
  // Check if DEBUG environment variable is set
6
6
  const isDebugMode = process.env.DEBUG && (
7
- process.env.DEBUG.toLowerCase() === 'true' ||
7
+ process.env.DEBUG.toLowerCase() === 'true' ||
8
8
  process.env.DEBUG.includes('azure-mcp') ||
9
9
  process.env.DEBUG === '*'
10
10
  )
@@ -12,7 +12,7 @@ const isDebugMode = process.env.DEBUG && (
12
12
  // Helper function for debug logging
13
13
  function debugLog(...args) {
14
14
  if (isDebugMode) {
15
- console.log(...args)
15
+ console.error(...args)
16
16
  }
17
17
  }
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
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",
@@ -33,11 +33,11 @@
33
33
  "arm64"
34
34
  ],
35
35
  "optionalDependencies": {
36
- "@azure/mcp-darwin-x64": "0.0.19",
37
- "@azure/mcp-linux-arm64": "0.0.19",
38
- "@azure/mcp-darwin-arm64": "0.0.19",
39
- "@azure/mcp-win32-x64": "0.0.19",
40
- "@azure/mcp-linux-x64": "0.0.19",
41
- "@azure/mcp-win32-arm64": "0.0.19"
36
+ "@azure/mcp-darwin-x64": "0.0.21",
37
+ "@azure/mcp-linux-arm64": "0.0.21",
38
+ "@azure/mcp-darwin-arm64": "0.0.21",
39
+ "@azure/mcp-win32-x64": "0.0.21",
40
+ "@azure/mcp-linux-x64": "0.0.21",
41
+ "@azure/mcp-win32-arm64": "0.0.21"
42
42
  }
43
43
  }