@azure/mcp 0.0.21 โ 0.1.1
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 +21 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -16,7 +16,6 @@ The Azure MCP Server implements the [MCP specification](https://modelcontextprot
|
|
|
16
16
|
6. [๐ฅ Contributing to Azure MCP Server](#-contributing)
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
|
|
20
19
|
## ๐ฏ Overview
|
|
21
20
|
|
|
22
21
|
### โจ What can you do with the Azure MCP Server?
|
|
@@ -78,7 +77,7 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
|
|
|
78
77
|
- List and get schema for tables.
|
|
79
78
|
- List, get configuration and get parameters for servers.
|
|
80
79
|
|
|
81
|
-
### ๐งฎ
|
|
80
|
+
### ๐งฎ Azure Data Explorer
|
|
82
81
|
- List Kusto clusters
|
|
83
82
|
- List databases in a Kusto cluster
|
|
84
83
|
- List tables in a Kusto database
|
|
@@ -214,6 +213,24 @@ AZURE_CLIENT_SECRET={YOUR_AZURE_CLIENT_SECRET}
|
|
|
214
213
|
|
|
215
214
|
Optionally, customers can use `--env` or `--volume` to pass authentication values.
|
|
216
215
|
|
|
216
|
+
### ๐๏ธ Updates
|
|
217
|
+
|
|
218
|
+
#### NPX
|
|
219
|
+
|
|
220
|
+
If you use the default package spec of `@azure/mcp@latest`, npx will look for a new version on each server start. If you use just `@azure/mcp`, npx will continue to use its cached version until its cache is cleared.
|
|
221
|
+
|
|
222
|
+
#### NPM
|
|
223
|
+
|
|
224
|
+
If you globally install the cli via `npm install -g @azure/mcp` it will use the installed version until you manually update it with `npm update -g @azure/mcp`.
|
|
225
|
+
|
|
226
|
+
#### Docker
|
|
227
|
+
|
|
228
|
+
There is no version update built into the docker image. To update, just pull the latest from the repo and repeat the [docker installation instructions](#docker-install).
|
|
229
|
+
|
|
230
|
+
#### VS Code
|
|
231
|
+
|
|
232
|
+
Installation in VS Code should be in one of the previous forms and the update instructions are the same. If you installed the mcp server with the `npx` command and `-y @azure/mcp@latest` args, npx will check for package updates each time VS Code starts the server. Using a docker container in VS Code has the same no-update limitation described above.
|
|
233
|
+
|
|
217
234
|
## ๐งช Test the Azure MCP Server
|
|
218
235
|
|
|
219
236
|
1. Open GitHub Copilot in VS Code and [switch to Agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode)
|
|
@@ -227,7 +244,7 @@ You can easily configure your MCP client to use the Azure MCP Server. Have your
|
|
|
227
244
|
|
|
228
245
|
### Using standard IO
|
|
229
246
|
|
|
230
|
-
Configure the MCP client to execute: `npx -y @azure/mcp@latest server start`. For instructions on using
|
|
247
|
+
Configure the MCP client to execute: `npx -y @azure/mcp@latest server start`. For instructions on using , follow instructions in [One-Click Install](#-one-click-install) or [Manual Install](#-manual-install).
|
|
231
248
|
|
|
232
249
|
### Using SSE
|
|
233
250
|
|
|
@@ -301,5 +318,5 @@ This project has adopted the
|
|
|
301
318
|
[Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
302
319
|
For more information, see the
|
|
303
320
|
[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
|
|
304
|
-
or contact [
|
|
321
|
+
or contact [open@microsoft.com](mailto:open@microsoft.com)
|
|
305
322
|
with any additional questions or comments.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
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.
|
|
37
|
-
"@azure/mcp-linux-arm64": "0.
|
|
38
|
-
"@azure/mcp-darwin-arm64": "0.
|
|
39
|
-
"@azure/mcp-win32-x64": "0.
|
|
40
|
-
"@azure/mcp-linux-x64": "0.
|
|
41
|
-
"@azure/mcp-win32-arm64": "0.
|
|
36
|
+
"@azure/mcp-darwin-x64": "0.1.1",
|
|
37
|
+
"@azure/mcp-linux-arm64": "0.1.1",
|
|
38
|
+
"@azure/mcp-darwin-arm64": "0.1.1",
|
|
39
|
+
"@azure/mcp-win32-x64": "0.1.1",
|
|
40
|
+
"@azure/mcp-linux-x64": "0.1.1",
|
|
41
|
+
"@azure/mcp-win32-arm64": "0.1.1"
|
|
42
42
|
}
|
|
43
43
|
}
|