@azure/mcp-win32-arm64 0.0.14 โ 0.0.16
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 +46 -8
- package/dist/Azure.Core.Amqp.dll +0 -0
- package/dist/Azure.Messaging.ServiceBus.dll +0 -0
- package/dist/Microsoft.Azure.Amqp.dll +0 -0
- package/dist/Microsoft.Extensions.AI.Abstractions.dll +0 -0
- package/dist/ModelContextProtocol.AspNetCore.dll +0 -0
- package/dist/ModelContextProtocol.dll +0 -0
- package/dist/System.Diagnostics.DiagnosticSource.dll +0 -0
- package/dist/System.Text.Json.dll +0 -0
- package/dist/System.Threading.Channels.dll +0 -0
- package/dist/azmcp.deps.json +128 -97
- package/dist/azmcp.dll +0 -0
- package/dist/azmcp.exe +0 -0
- package/dist/createdump.exe +0 -0
- package/index.js +2 -2
- package/package.json +1 -1
- package/dist/Microsoft.Extensions.AI.dll +0 -0
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
[](https://insiders.vscode.dev/redirect/mcp/install?name=Azure%20MCP%20Server&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40azure%2Fmcp%40latest%22%2C%22server%22%2C%22start%22%5D%7D) [](https://insiders.vscode.dev/redirect/mcp/install?name=Azure%20MCP%20Server&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40azure%2Fmcp%40latest%22%2C%22server%22%2C%22start%22%5D%7D&quality=insiders)
|
|
5
5
|
|
|
6
|
-
The Azure MCP Server implements the [MCP specification](https://modelcontextprotocol.io) to create a seamless connection between AI agents and key Azure services like Azure Storage, Cosmos DB, and more.
|
|
6
|
+
The Azure MCP Server implements the [MCP specification](https://modelcontextprotocol.io) to create a seamless connection between AI agents and key Azure services like Azure Storage, Cosmos DB, and more.
|
|
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
|
|
|
@@ -101,6 +101,10 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
|
|
|
101
101
|
- List resource groups
|
|
102
102
|
- Resource group management operations
|
|
103
103
|
|
|
104
|
+
### ๐ Azure Service Bus
|
|
105
|
+
- Peek at messages from subscriptions and queues
|
|
106
|
+
- Examine properties and runtime information about queues, topics, and subscriptions
|
|
107
|
+
|
|
104
108
|
### ๐ง Azure CLI Extension
|
|
105
109
|
- Execute Azure CLI commands directly
|
|
106
110
|
- Support for all Azure CLI functionality
|
|
@@ -112,7 +116,7 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
|
|
|
112
116
|
- Support for template discovery, template initialization, provisioning and deployment
|
|
113
117
|
- Cross-platform compatibility
|
|
114
118
|
|
|
115
|
-
For detailed command documentation and examples, see [Azure MCP Commands](docs/azmcp-commands.md).
|
|
119
|
+
For detailed command documentation and examples, see [Azure MCP Commands](https://github.com/Azure/azure-mcp/blob/main/docs/azmcp-commands.md).
|
|
116
120
|
|
|
117
121
|
## ๐ Getting Started
|
|
118
122
|
|
|
@@ -127,7 +131,9 @@ The Azure MCP Server provides Azure SDK and Azure CLI developer tools. It can be
|
|
|
127
131
|
* [๐ซ Stable release](https://code.visualstudio.com/download)
|
|
128
132
|
* [๐ฎ Insiders release](https://code.visualstudio.com/insiders)
|
|
129
133
|
2. Install the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) and [GitHub Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat) extensions
|
|
130
|
-
3.
|
|
134
|
+
3. Install [Node.js](https://nodejs.org/en/download) 20 or later
|
|
135
|
+
* Ensure `node` and `npm` are in your path
|
|
136
|
+
4. Open VS Code in an empty folder
|
|
131
137
|
|
|
132
138
|
### Installation
|
|
133
139
|
|
|
@@ -160,6 +166,38 @@ For a step-by-step installation, follow these instructions:
|
|
|
160
166
|
}
|
|
161
167
|
```
|
|
162
168
|
|
|
169
|
+
#### Docker Install
|
|
170
|
+
|
|
171
|
+
For a step-by-step installation, follow these instructions:
|
|
172
|
+
1. Clone repository
|
|
173
|
+
2. From repository root, build Docker image: `docker build -t azure/azuremcp .`
|
|
174
|
+
3. Create an `.env` file with environment variables that [match one of the `EnvironmentCredential`](https://learn.microsoft.com/dotnet/api/azure.identity.environmentcredential) sets. For example, a `.env` file using a service principal could look like:
|
|
175
|
+
```json
|
|
176
|
+
AZURE_TENANT_ID={YOUR_AZURE_TENANT_ID}
|
|
177
|
+
AZURE_CLIENT_ID={YOUR_AZURE_CLIENT_ID}
|
|
178
|
+
AZURE_CLIENT_SECRET={YOUR_AZURE_CLIENT_SECRET}
|
|
179
|
+
```
|
|
180
|
+
1. Add `.vscode/mcp.json` or update existing MCP configuration. Replace `/full/path/to/.env` with a path to your `.env` file.
|
|
181
|
+
```json
|
|
182
|
+
{
|
|
183
|
+
"servers": {
|
|
184
|
+
"Azure MCP Server": {
|
|
185
|
+
"command": "docker",
|
|
186
|
+
"args": [
|
|
187
|
+
"run",
|
|
188
|
+
"-i",
|
|
189
|
+
"--rm",
|
|
190
|
+
"azure/azuremcp",
|
|
191
|
+
"--env-file",
|
|
192
|
+
"/full/path/to/.env"
|
|
193
|
+
]
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Optionally, customers can use `--env` or `--volume` to pass authentication values.
|
|
200
|
+
|
|
163
201
|
## ๐งช Test the Azure MCP Server
|
|
164
202
|
|
|
165
203
|
1. Open GitHub Copilot in VS Code and [switch to Agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode)
|
|
@@ -196,7 +234,7 @@ More end-to-end MCP client/agent guides are coming soon!
|
|
|
196
234
|
|
|
197
235
|
## ๐ Troubleshooting
|
|
198
236
|
|
|
199
|
-
See [Troubleshooting guide](/TROUBLESHOOTING.md) for help with common issues and logging.
|
|
237
|
+
See [Troubleshooting guide](https://github.com/Azure/azure-mcp/blob/main/TROUBLESHOOTING.md) for help with common issues and logging.
|
|
200
238
|
|
|
201
239
|
## ๐ Authentication
|
|
202
240
|
|
|
@@ -210,9 +248,9 @@ The Azure MCP Server seamlessly integrates with your host operating system's aut
|
|
|
210
248
|
6. **Azure Developer CLI** (`AzureDeveloperCliCredential`) - Uses your azd login
|
|
211
249
|
7. **Interactive Browser** (`InteractiveBrowserCredential`) - Falls back to browser-based login if needed
|
|
212
250
|
|
|
213
|
-
If you're already logged in through any of these methods, the Azure MCP Server will automatically use those credentials.
|
|
251
|
+
If you're already logged in through any of these methods, the Azure MCP Server will automatically use those credentials. Ensure that you have the correct authorization permissions in Azure (e.g. read access to your Storage account) via RBAC (Role-Based Access Control). To learn more about Azure's RBAC authorization system, visit this [link](https://learn.microsoft.com/azure/role-based-access-control/overview).
|
|
214
252
|
|
|
215
|
-
If you're running into any issues with authentication, visit our [troubleshooting guide](/TROUBLESHOOTING.md).
|
|
253
|
+
If you're running into any issues with authentication, visit our [troubleshooting guide](https://github.com/Azure/azure-mcp/blob/main/TROUBLESHOOTING.md).
|
|
216
254
|
|
|
217
255
|
### Production Credentials
|
|
218
256
|
|
|
@@ -234,7 +272,7 @@ MCP as a phenomenon is very novel and cutting-edge. As with all new technology s
|
|
|
234
272
|
|
|
235
273
|
We welcome contributions to the Azure MCP Server! Whether you're fixing bugs, adding new features, or improving documentation, your contributions are welcome.
|
|
236
274
|
|
|
237
|
-
Please read our [Contributing Guide](/CONTRIBUTING.md) for guidelines on:
|
|
275
|
+
Please read our [Contributing Guide](https://github.com/Azure/azure-mcp/blob/main/CONTRIBUTING.md) for guidelines on:
|
|
238
276
|
|
|
239
277
|
- ๐ ๏ธ Setting up your development environment
|
|
240
278
|
- โจ Adding new commands
|
|
@@ -248,4 +286,4 @@ This project has adopted the
|
|
|
248
286
|
For more information, see the
|
|
249
287
|
[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
|
|
250
288
|
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
|
|
251
|
-
with any additional questions or comments.
|
|
289
|
+
with any additional questions or comments.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/azmcp.deps.json
CHANGED
|
@@ -7,13 +7,14 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v9.0": {},
|
|
9
9
|
".NETCoreApp,Version=v9.0/win-arm64": {
|
|
10
|
-
"azmcp/0.0.
|
|
10
|
+
"azmcp/0.0.16": {
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"Azure.Core": "1.45.0",
|
|
13
13
|
"Azure.Data.AppConfiguration": "1.6.0",
|
|
14
14
|
"Azure.Data.Tables": "12.10.0",
|
|
15
15
|
"Azure.Identity": "1.13.2",
|
|
16
16
|
"Azure.Identity.Broker": "1.2.0",
|
|
17
|
+
"Azure.Messaging.ServiceBus": "7.19.0",
|
|
17
18
|
"Azure.Monitor.OpenTelemetry.AspNetCore": "1.2.0",
|
|
18
19
|
"Azure.Monitor.Query": "1.6.0",
|
|
19
20
|
"Azure.ResourceManager.AppConfiguration": "1.4.0",
|
|
@@ -34,8 +35,8 @@
|
|
|
34
35
|
"Microsoft.Extensions.Hosting": "9.0.4",
|
|
35
36
|
"Microsoft.Identity.Client.Broker": "4.67.2",
|
|
36
37
|
"Microsoft.NET.ILLink.Tasks": "9.0.1",
|
|
37
|
-
"ModelContextProtocol": "0.1.0-preview.
|
|
38
|
-
"ModelContextProtocol.AspNetCore": "0.1.0-preview.
|
|
38
|
+
"ModelContextProtocol": "0.1.0-preview.13",
|
|
39
|
+
"ModelContextProtocol.AspNetCore": "0.1.0-preview.13",
|
|
39
40
|
"Newtonsoft.Json": "13.0.3",
|
|
40
41
|
"Npgsql": "9.0.3",
|
|
41
42
|
"OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.11.2",
|
|
@@ -156,6 +157,10 @@
|
|
|
156
157
|
"assemblyVersion": "9.0.0.0",
|
|
157
158
|
"fileVersion": "9.0.124.61010"
|
|
158
159
|
},
|
|
160
|
+
"System.Diagnostics.DiagnosticSource.dll": {
|
|
161
|
+
"assemblyVersion": "9.0.0.0",
|
|
162
|
+
"fileVersion": "9.0.124.61010"
|
|
163
|
+
},
|
|
159
164
|
"System.Diagnostics.FileVersionInfo.dll": {
|
|
160
165
|
"assemblyVersion": "9.0.0.0",
|
|
161
166
|
"fileVersion": "9.0.124.61010"
|
|
@@ -596,10 +601,18 @@
|
|
|
596
601
|
"assemblyVersion": "9.0.0.0",
|
|
597
602
|
"fileVersion": "9.0.124.61010"
|
|
598
603
|
},
|
|
604
|
+
"System.Text.Json.dll": {
|
|
605
|
+
"assemblyVersion": "9.0.0.0",
|
|
606
|
+
"fileVersion": "9.0.124.61010"
|
|
607
|
+
},
|
|
599
608
|
"System.Text.RegularExpressions.dll": {
|
|
600
609
|
"assemblyVersion": "9.0.0.0",
|
|
601
610
|
"fileVersion": "9.0.124.61010"
|
|
602
611
|
},
|
|
612
|
+
"System.Threading.Channels.dll": {
|
|
613
|
+
"assemblyVersion": "9.0.0.0",
|
|
614
|
+
"fileVersion": "9.0.124.61010"
|
|
615
|
+
},
|
|
603
616
|
"System.Threading.Overlapped.dll": {
|
|
604
617
|
"assemblyVersion": "9.0.0.0",
|
|
605
618
|
"fileVersion": "9.0.124.61010"
|
|
@@ -1224,6 +1237,19 @@
|
|
|
1224
1237
|
}
|
|
1225
1238
|
}
|
|
1226
1239
|
},
|
|
1240
|
+
"Azure.Core.Amqp/1.3.1": {
|
|
1241
|
+
"dependencies": {
|
|
1242
|
+
"Microsoft.Azure.Amqp": "2.6.9",
|
|
1243
|
+
"System.Memory": "4.5.5",
|
|
1244
|
+
"System.Memory.Data": "6.0.1"
|
|
1245
|
+
},
|
|
1246
|
+
"runtime": {
|
|
1247
|
+
"lib/netstandard2.0/Azure.Core.Amqp.dll": {
|
|
1248
|
+
"assemblyVersion": "1.3.1.0",
|
|
1249
|
+
"fileVersion": "1.300.124.38003"
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1227
1253
|
"Azure.Data.AppConfiguration/1.6.0": {
|
|
1228
1254
|
"dependencies": {
|
|
1229
1255
|
"Azure.Core": "1.45.0"
|
|
@@ -1277,6 +1303,19 @@
|
|
|
1277
1303
|
}
|
|
1278
1304
|
}
|
|
1279
1305
|
},
|
|
1306
|
+
"Azure.Messaging.ServiceBus/7.19.0": {
|
|
1307
|
+
"dependencies": {
|
|
1308
|
+
"Azure.Core": "1.45.0",
|
|
1309
|
+
"Azure.Core.Amqp": "1.3.1",
|
|
1310
|
+
"Microsoft.Azure.Amqp": "2.6.9"
|
|
1311
|
+
},
|
|
1312
|
+
"runtime": {
|
|
1313
|
+
"lib/net8.0/Azure.Messaging.ServiceBus.dll": {
|
|
1314
|
+
"assemblyVersion": "7.19.0.0",
|
|
1315
|
+
"fileVersion": "7.1900.25.20802"
|
|
1316
|
+
}
|
|
1317
|
+
}
|
|
1318
|
+
},
|
|
1280
1319
|
"Azure.Monitor.OpenTelemetry.AspNetCore/1.2.0": {
|
|
1281
1320
|
"dependencies": {
|
|
1282
1321
|
"Azure.Core": "1.45.0",
|
|
@@ -1320,7 +1359,7 @@
|
|
|
1320
1359
|
"dependencies": {
|
|
1321
1360
|
"Azure.Core": "1.45.0",
|
|
1322
1361
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1323
|
-
"System.Text.Json": "
|
|
1362
|
+
"System.Text.Json": "6.0.10"
|
|
1324
1363
|
},
|
|
1325
1364
|
"runtime": {
|
|
1326
1365
|
"lib/netstandard2.0/Azure.ResourceManager.dll": {
|
|
@@ -1334,7 +1373,7 @@
|
|
|
1334
1373
|
"Azure.Core": "1.45.0",
|
|
1335
1374
|
"Azure.ResourceManager": "1.13.0",
|
|
1336
1375
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1337
|
-
"System.Text.Json": "
|
|
1376
|
+
"System.Text.Json": "6.0.10"
|
|
1338
1377
|
},
|
|
1339
1378
|
"runtime": {
|
|
1340
1379
|
"lib/net8.0/Azure.ResourceManager.AppConfiguration.dll": {
|
|
@@ -1348,7 +1387,7 @@
|
|
|
1348
1387
|
"Azure.Core": "1.45.0",
|
|
1349
1388
|
"Azure.ResourceManager": "1.13.0",
|
|
1350
1389
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1351
|
-
"System.Text.Json": "
|
|
1390
|
+
"System.Text.Json": "6.0.10"
|
|
1352
1391
|
},
|
|
1353
1392
|
"runtime": {
|
|
1354
1393
|
"lib/netstandard2.0/Azure.ResourceManager.CosmosDB.dll": {
|
|
@@ -1361,7 +1400,7 @@
|
|
|
1361
1400
|
"dependencies": {
|
|
1362
1401
|
"Azure.Core": "1.45.0",
|
|
1363
1402
|
"Azure.ResourceManager": "1.13.0",
|
|
1364
|
-
"System.Text.Json": "
|
|
1403
|
+
"System.Text.Json": "6.0.10"
|
|
1365
1404
|
},
|
|
1366
1405
|
"runtime": {
|
|
1367
1406
|
"lib/netstandard2.0/Azure.ResourceManager.Kusto.dll": {
|
|
@@ -1375,7 +1414,7 @@
|
|
|
1375
1414
|
"Azure.Core": "1.45.0",
|
|
1376
1415
|
"Azure.ResourceManager": "1.13.0",
|
|
1377
1416
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1378
|
-
"System.Text.Json": "
|
|
1417
|
+
"System.Text.Json": "6.0.10"
|
|
1379
1418
|
},
|
|
1380
1419
|
"runtime": {
|
|
1381
1420
|
"lib/netstandard2.0/Azure.ResourceManager.OperationalInsights.dll": {
|
|
@@ -1389,7 +1428,7 @@
|
|
|
1389
1428
|
"Azure.Core": "1.45.0",
|
|
1390
1429
|
"Azure.ResourceManager": "1.13.0",
|
|
1391
1430
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1392
|
-
"System.Text.Json": "
|
|
1431
|
+
"System.Text.Json": "6.0.10"
|
|
1393
1432
|
},
|
|
1394
1433
|
"runtime": {
|
|
1395
1434
|
"lib/netstandard2.0/Azure.ResourceManager.PostgreSql.dll": {
|
|
@@ -1403,7 +1442,7 @@
|
|
|
1403
1442
|
"Azure.Core": "1.45.0",
|
|
1404
1443
|
"Azure.ResourceManager": "1.13.0",
|
|
1405
1444
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1406
|
-
"System.Text.Json": "
|
|
1445
|
+
"System.Text.Json": "6.0.10"
|
|
1407
1446
|
},
|
|
1408
1447
|
"runtime": {
|
|
1409
1448
|
"lib/netstandard2.0/Azure.ResourceManager.Search.dll": {
|
|
@@ -1417,7 +1456,7 @@
|
|
|
1417
1456
|
"Azure.Core": "1.45.0",
|
|
1418
1457
|
"Azure.ResourceManager": "1.13.0",
|
|
1419
1458
|
"System.ClientModel": "1.4.0-beta.1",
|
|
1420
|
-
"System.Text.Json": "
|
|
1459
|
+
"System.Text.Json": "6.0.10"
|
|
1421
1460
|
},
|
|
1422
1461
|
"runtime": {
|
|
1423
1462
|
"lib/net8.0/Azure.ResourceManager.Storage.dll": {
|
|
@@ -1442,7 +1481,7 @@
|
|
|
1442
1481
|
"dependencies": {
|
|
1443
1482
|
"Azure.Core": "1.45.0",
|
|
1444
1483
|
"System.Memory": "4.5.5",
|
|
1445
|
-
"System.Text.Json": "
|
|
1484
|
+
"System.Text.Json": "6.0.10",
|
|
1446
1485
|
"System.Threading.Tasks.Extensions": "4.5.4"
|
|
1447
1486
|
},
|
|
1448
1487
|
"runtime": {
|
|
@@ -1475,6 +1514,14 @@
|
|
|
1475
1514
|
}
|
|
1476
1515
|
}
|
|
1477
1516
|
},
|
|
1517
|
+
"Microsoft.Azure.Amqp/2.6.9": {
|
|
1518
|
+
"runtime": {
|
|
1519
|
+
"lib/netstandard2.0/Microsoft.Azure.Amqp.dll": {
|
|
1520
|
+
"assemblyVersion": "2.6.0.0",
|
|
1521
|
+
"fileVersion": "2.6.9.0"
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
},
|
|
1478
1525
|
"Microsoft.Azure.Cosmos/3.48.0": {
|
|
1479
1526
|
"dependencies": {
|
|
1480
1527
|
"Azure.Core": "1.45.0",
|
|
@@ -1483,7 +1530,7 @@
|
|
|
1483
1530
|
"System.Buffers": "4.5.1",
|
|
1484
1531
|
"System.Collections.Immutable": "5.0.0",
|
|
1485
1532
|
"System.Configuration.ConfigurationManager": "6.0.0",
|
|
1486
|
-
"System.Diagnostics.DiagnosticSource": "9.0.
|
|
1533
|
+
"System.Diagnostics.DiagnosticSource": "9.0.0",
|
|
1487
1534
|
"System.Memory": "4.5.5",
|
|
1488
1535
|
"System.Net.Http": "4.3.4",
|
|
1489
1536
|
"System.Numerics.Vectors": "4.5.0",
|
|
@@ -1573,28 +1620,11 @@
|
|
|
1573
1620
|
}
|
|
1574
1621
|
},
|
|
1575
1622
|
"Microsoft.CSharp/4.5.0": {},
|
|
1576
|
-
"Microsoft.Extensions.AI/9.4.
|
|
1577
|
-
"dependencies": {
|
|
1578
|
-
"Microsoft.Extensions.AI.Abstractions": "9.4.0-preview.1.25207.5",
|
|
1579
|
-
"Microsoft.Extensions.Caching.Abstractions": "9.0.4",
|
|
1580
|
-
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
|
|
1581
|
-
"Microsoft.Extensions.Logging.Abstractions": "9.0.4",
|
|
1582
|
-
"System.Diagnostics.DiagnosticSource": "9.0.4",
|
|
1583
|
-
"System.Text.Json": "9.0.4",
|
|
1584
|
-
"System.Threading.Channels": "9.0.4"
|
|
1585
|
-
},
|
|
1586
|
-
"runtime": {
|
|
1587
|
-
"lib/net9.0/Microsoft.Extensions.AI.dll": {
|
|
1588
|
-
"assemblyVersion": "9.4.0.0",
|
|
1589
|
-
"fileVersion": "9.400.25.20705"
|
|
1590
|
-
}
|
|
1591
|
-
}
|
|
1592
|
-
},
|
|
1593
|
-
"Microsoft.Extensions.AI.Abstractions/9.4.0-preview.1.25207.5": {
|
|
1623
|
+
"Microsoft.Extensions.AI.Abstractions/9.4.4-preview.1.25259.16": {
|
|
1594
1624
|
"runtime": {
|
|
1595
1625
|
"lib/net9.0/Microsoft.Extensions.AI.Abstractions.dll": {
|
|
1596
1626
|
"assemblyVersion": "9.4.0.0",
|
|
1597
|
-
"fileVersion": "9.400.
|
|
1627
|
+
"fileVersion": "9.400.425.25916"
|
|
1598
1628
|
}
|
|
1599
1629
|
}
|
|
1600
1630
|
},
|
|
@@ -2003,7 +2033,7 @@
|
|
|
2003
2033
|
"Microsoft.Identity.Client/4.67.2": {
|
|
2004
2034
|
"dependencies": {
|
|
2005
2035
|
"Microsoft.IdentityModel.Abstractions": "6.35.0",
|
|
2006
|
-
"System.Diagnostics.DiagnosticSource": "9.0.
|
|
2036
|
+
"System.Diagnostics.DiagnosticSource": "9.0.0"
|
|
2007
2037
|
},
|
|
2008
2038
|
"runtime": {
|
|
2009
2039
|
"lib/net8.0/Microsoft.Identity.Client.dll": {
|
|
@@ -2084,10 +2114,9 @@
|
|
|
2084
2114
|
}
|
|
2085
2115
|
}
|
|
2086
2116
|
},
|
|
2087
|
-
"ModelContextProtocol/0.1.0-preview.
|
|
2117
|
+
"ModelContextProtocol/0.1.0-preview.13": {
|
|
2088
2118
|
"dependencies": {
|
|
2089
|
-
"Microsoft.Extensions.AI": "9.4.
|
|
2090
|
-
"Microsoft.Extensions.AI.Abstractions": "9.4.0-preview.1.25207.5",
|
|
2119
|
+
"Microsoft.Extensions.AI.Abstractions": "9.4.4-preview.1.25259.16",
|
|
2091
2120
|
"Microsoft.Extensions.Hosting.Abstractions": "9.0.4",
|
|
2092
2121
|
"Microsoft.Extensions.Logging.Abstractions": "9.0.4",
|
|
2093
2122
|
"System.Net.ServerSentEvents": "10.0.0-preview.3.25171.5"
|
|
@@ -2099,9 +2128,9 @@
|
|
|
2099
2128
|
}
|
|
2100
2129
|
}
|
|
2101
2130
|
},
|
|
2102
|
-
"ModelContextProtocol.AspNetCore/0.1.0-preview.
|
|
2131
|
+
"ModelContextProtocol.AspNetCore/0.1.0-preview.13": {
|
|
2103
2132
|
"dependencies": {
|
|
2104
|
-
"ModelContextProtocol": "0.1.0-preview.
|
|
2133
|
+
"ModelContextProtocol": "0.1.0-preview.13"
|
|
2105
2134
|
},
|
|
2106
2135
|
"runtime": {
|
|
2107
2136
|
"lib/net9.0/ModelContextProtocol.AspNetCore.dll": {
|
|
@@ -2144,7 +2173,7 @@
|
|
|
2144
2173
|
},
|
|
2145
2174
|
"OpenTelemetry.Api/1.11.2": {
|
|
2146
2175
|
"dependencies": {
|
|
2147
|
-
"System.Diagnostics.DiagnosticSource": "9.0.
|
|
2176
|
+
"System.Diagnostics.DiagnosticSource": "9.0.0"
|
|
2148
2177
|
},
|
|
2149
2178
|
"runtime": {
|
|
2150
2179
|
"lib/net9.0/OpenTelemetry.Api.dll": {
|
|
@@ -2445,14 +2474,7 @@
|
|
|
2445
2474
|
"runtime.win.System.Diagnostics.Debug": "4.3.0"
|
|
2446
2475
|
}
|
|
2447
2476
|
},
|
|
2448
|
-
"System.Diagnostics.DiagnosticSource/9.0.
|
|
2449
|
-
"runtime": {
|
|
2450
|
-
"lib/net9.0/System.Diagnostics.DiagnosticSource.dll": {
|
|
2451
|
-
"assemblyVersion": "9.0.0.0",
|
|
2452
|
-
"fileVersion": "9.0.425.16305"
|
|
2453
|
-
}
|
|
2454
|
-
}
|
|
2455
|
-
},
|
|
2477
|
+
"System.Diagnostics.DiagnosticSource/9.0.0": {},
|
|
2456
2478
|
"System.Diagnostics.EventLog/9.0.4": {
|
|
2457
2479
|
"runtime": {
|
|
2458
2480
|
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
|
|
@@ -2582,7 +2604,7 @@
|
|
|
2582
2604
|
"Microsoft.NETCore.Platforms": "1.1.1",
|
|
2583
2605
|
"System.Collections": "4.3.0",
|
|
2584
2606
|
"System.Diagnostics.Debug": "4.3.0",
|
|
2585
|
-
"System.Diagnostics.DiagnosticSource": "9.0.
|
|
2607
|
+
"System.Diagnostics.DiagnosticSource": "9.0.0",
|
|
2586
2608
|
"System.Diagnostics.Tracing": "4.3.0",
|
|
2587
2609
|
"System.Globalization": "4.3.0",
|
|
2588
2610
|
"System.Globalization.Extensions": "4.3.0",
|
|
@@ -2850,12 +2872,15 @@
|
|
|
2850
2872
|
"runtime.any.System.Text.Encoding.Extensions": "4.3.0"
|
|
2851
2873
|
}
|
|
2852
2874
|
},
|
|
2853
|
-
"System.Text.
|
|
2854
|
-
"
|
|
2855
|
-
"
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2875
|
+
"System.Text.Encodings.Web/6.0.0": {
|
|
2876
|
+
"dependencies": {
|
|
2877
|
+
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
|
2878
|
+
}
|
|
2879
|
+
},
|
|
2880
|
+
"System.Text.Json/6.0.10": {
|
|
2881
|
+
"dependencies": {
|
|
2882
|
+
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
|
|
2883
|
+
"System.Text.Encodings.Web": "6.0.0"
|
|
2859
2884
|
}
|
|
2860
2885
|
},
|
|
2861
2886
|
"System.Text.RegularExpressions/4.3.1": {
|
|
@@ -2869,14 +2894,6 @@
|
|
|
2869
2894
|
"System.Threading.Tasks": "4.3.0"
|
|
2870
2895
|
}
|
|
2871
2896
|
},
|
|
2872
|
-
"System.Threading.Channels/9.0.4": {
|
|
2873
|
-
"runtime": {
|
|
2874
|
-
"lib/net9.0/System.Threading.Channels.dll": {
|
|
2875
|
-
"assemblyVersion": "9.0.0.0",
|
|
2876
|
-
"fileVersion": "9.0.425.16305"
|
|
2877
|
-
}
|
|
2878
|
-
}
|
|
2879
|
-
},
|
|
2880
2897
|
"System.Threading.Overlapped/4.3.0": {
|
|
2881
2898
|
"dependencies": {
|
|
2882
2899
|
"Microsoft.NETCore.Platforms": "1.1.1",
|
|
@@ -2909,7 +2926,7 @@
|
|
|
2909
2926
|
}
|
|
2910
2927
|
},
|
|
2911
2928
|
"libraries": {
|
|
2912
|
-
"azmcp/0.0.
|
|
2929
|
+
"azmcp/0.0.16": {
|
|
2913
2930
|
"type": "project",
|
|
2914
2931
|
"serviceable": false,
|
|
2915
2932
|
"sha512": ""
|
|
@@ -2931,6 +2948,13 @@
|
|
|
2931
2948
|
"path": "azure.core/1.45.0",
|
|
2932
2949
|
"hashPath": "azure.core.1.45.0.nupkg.sha512"
|
|
2933
2950
|
},
|
|
2951
|
+
"Azure.Core.Amqp/1.3.1": {
|
|
2952
|
+
"type": "package",
|
|
2953
|
+
"serviceable": true,
|
|
2954
|
+
"sha512": "sha512-AY1ZM4WwLBb9L2WwQoWs7wS2XKYg83tp3yVVdgySdebGN0FuIszuEqCy3Nhv6qHpbkjx/NGuOTsUbF/oNGBgwA==",
|
|
2955
|
+
"path": "azure.core.amqp/1.3.1",
|
|
2956
|
+
"hashPath": "azure.core.amqp.1.3.1.nupkg.sha512"
|
|
2957
|
+
},
|
|
2934
2958
|
"Azure.Data.AppConfiguration/1.6.0": {
|
|
2935
2959
|
"type": "package",
|
|
2936
2960
|
"serviceable": true,
|
|
@@ -2959,6 +2983,13 @@
|
|
|
2959
2983
|
"path": "azure.identity.broker/1.2.0",
|
|
2960
2984
|
"hashPath": "azure.identity.broker.1.2.0.nupkg.sha512"
|
|
2961
2985
|
},
|
|
2986
|
+
"Azure.Messaging.ServiceBus/7.19.0": {
|
|
2987
|
+
"type": "package",
|
|
2988
|
+
"serviceable": true,
|
|
2989
|
+
"sha512": "sha512-DoGfZpH6bwtsA6siIS5wv3SZZzOoNLnJi9N7OHhtBvE5Wlfn13jvwEe5z92HOddJVYEchdIZBK+jHBtPz1HFpg==",
|
|
2990
|
+
"path": "azure.messaging.servicebus/7.19.0",
|
|
2991
|
+
"hashPath": "azure.messaging.servicebus.7.19.0.nupkg.sha512"
|
|
2992
|
+
},
|
|
2962
2993
|
"Azure.Monitor.OpenTelemetry.AspNetCore/1.2.0": {
|
|
2963
2994
|
"type": "package",
|
|
2964
2995
|
"serviceable": true,
|
|
@@ -3064,6 +3095,13 @@
|
|
|
3064
3095
|
"path": "azure.storage.common/12.23.0",
|
|
3065
3096
|
"hashPath": "azure.storage.common.12.23.0.nupkg.sha512"
|
|
3066
3097
|
},
|
|
3098
|
+
"Microsoft.Azure.Amqp/2.6.9": {
|
|
3099
|
+
"type": "package",
|
|
3100
|
+
"serviceable": true,
|
|
3101
|
+
"sha512": "sha512-5i9XzfqxK1H5IBl+OuOV1jwJdrOvi5RUwsZgVOryZm0GCzcM9NWPNRxzPAbsSeaR2T6+1gGvdT3vR+Vbha6KFQ==",
|
|
3102
|
+
"path": "microsoft.azure.amqp/2.6.9",
|
|
3103
|
+
"hashPath": "microsoft.azure.amqp.2.6.9.nupkg.sha512"
|
|
3104
|
+
},
|
|
3067
3105
|
"Microsoft.Azure.Cosmos/3.48.0": {
|
|
3068
3106
|
"type": "package",
|
|
3069
3107
|
"serviceable": true,
|
|
@@ -3113,19 +3151,12 @@
|
|
|
3113
3151
|
"path": "microsoft.csharp/4.5.0",
|
|
3114
3152
|
"hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
|
|
3115
3153
|
},
|
|
3116
|
-
"Microsoft.Extensions.AI/9.4.
|
|
3154
|
+
"Microsoft.Extensions.AI.Abstractions/9.4.4-preview.1.25259.16": {
|
|
3117
3155
|
"type": "package",
|
|
3118
3156
|
"serviceable": true,
|
|
3119
|
-
"sha512": "sha512-
|
|
3120
|
-
"path": "microsoft.extensions.ai/9.4.
|
|
3121
|
-
"hashPath": "microsoft.extensions.ai.9.4.
|
|
3122
|
-
},
|
|
3123
|
-
"Microsoft.Extensions.AI.Abstractions/9.4.0-preview.1.25207.5": {
|
|
3124
|
-
"type": "package",
|
|
3125
|
-
"serviceable": true,
|
|
3126
|
-
"sha512": "sha512-CptQvHk8wY+qb+AA3SoKlc5NQcXSoFNbt8Z+bAkt/tEZ61JMxFZ0dMG1AwCn14hRCUinFbxyPYXr5Zrjp99m3g==",
|
|
3127
|
-
"path": "microsoft.extensions.ai.abstractions/9.4.0-preview.1.25207.5",
|
|
3128
|
-
"hashPath": "microsoft.extensions.ai.abstractions.9.4.0-preview.1.25207.5.nupkg.sha512"
|
|
3157
|
+
"sha512": "sha512-GD1O+Fe7aJ8Kj/vqg3NAQYvbzSczxub72qrP3v4P+40oAcrIq/O1//fIsQSDX/a815pUS3C86FnpujZ7+VFUtw==",
|
|
3158
|
+
"path": "microsoft.extensions.ai.abstractions/9.4.4-preview.1.25259.16",
|
|
3159
|
+
"hashPath": "microsoft.extensions.ai.abstractions.9.4.4-preview.1.25259.16.nupkg.sha512"
|
|
3129
3160
|
},
|
|
3130
3161
|
"Microsoft.Extensions.Azure/1.11.0": {
|
|
3131
3162
|
"type": "package",
|
|
@@ -3414,19 +3445,19 @@
|
|
|
3414
3445
|
"path": "microsoft.win32.systemevents/6.0.0",
|
|
3415
3446
|
"hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
|
|
3416
3447
|
},
|
|
3417
|
-
"ModelContextProtocol/0.1.0-preview.
|
|
3448
|
+
"ModelContextProtocol/0.1.0-preview.13": {
|
|
3418
3449
|
"type": "package",
|
|
3419
3450
|
"serviceable": true,
|
|
3420
|
-
"sha512": "sha512-
|
|
3421
|
-
"path": "modelcontextprotocol/0.1.0-preview.
|
|
3422
|
-
"hashPath": "modelcontextprotocol.0.1.0-preview.
|
|
3451
|
+
"sha512": "sha512-FaqbPSHLakH6lYdKI9k7cb6VVnhFNFW+a9hqS/akTy9i2lvMojDcP8FQRwQVQSvZPNjaptRhues5jzi701t2LQ==",
|
|
3452
|
+
"path": "modelcontextprotocol/0.1.0-preview.13",
|
|
3453
|
+
"hashPath": "modelcontextprotocol.0.1.0-preview.13.nupkg.sha512"
|
|
3423
3454
|
},
|
|
3424
|
-
"ModelContextProtocol.AspNetCore/0.1.0-preview.
|
|
3455
|
+
"ModelContextProtocol.AspNetCore/0.1.0-preview.13": {
|
|
3425
3456
|
"type": "package",
|
|
3426
3457
|
"serviceable": true,
|
|
3427
|
-
"sha512": "sha512-
|
|
3428
|
-
"path": "modelcontextprotocol.aspnetcore/0.1.0-preview.
|
|
3429
|
-
"hashPath": "modelcontextprotocol.aspnetcore.0.1.0-preview.
|
|
3458
|
+
"sha512": "sha512-NYpmaVWKnIYc5mHFO9/Gfn3/vZ1hw5ve44Zon3Q4HOTPm3Ib23xm2Vm6GRCp8nUnXYES7Jcgc6FOovzf950YFw==",
|
|
3459
|
+
"path": "modelcontextprotocol.aspnetcore/0.1.0-preview.13",
|
|
3460
|
+
"hashPath": "modelcontextprotocol.aspnetcore.0.1.0-preview.13.nupkg.sha512"
|
|
3430
3461
|
},
|
|
3431
3462
|
"Newtonsoft.Json/13.0.3": {
|
|
3432
3463
|
"type": "package",
|
|
@@ -3799,12 +3830,12 @@
|
|
|
3799
3830
|
"path": "system.diagnostics.debug/4.3.0",
|
|
3800
3831
|
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
|
|
3801
3832
|
},
|
|
3802
|
-
"System.Diagnostics.DiagnosticSource/9.0.
|
|
3833
|
+
"System.Diagnostics.DiagnosticSource/9.0.0": {
|
|
3803
3834
|
"type": "package",
|
|
3804
3835
|
"serviceable": true,
|
|
3805
|
-
"sha512": "sha512-
|
|
3806
|
-
"path": "system.diagnostics.diagnosticsource/9.0.
|
|
3807
|
-
"hashPath": "system.diagnostics.diagnosticsource.9.0.
|
|
3836
|
+
"sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==",
|
|
3837
|
+
"path": "system.diagnostics.diagnosticsource/9.0.0",
|
|
3838
|
+
"hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512"
|
|
3808
3839
|
},
|
|
3809
3840
|
"System.Diagnostics.EventLog/9.0.4": {
|
|
3810
3841
|
"type": "package",
|
|
@@ -4100,12 +4131,19 @@
|
|
|
4100
4131
|
"path": "system.text.encoding.extensions/4.3.0",
|
|
4101
4132
|
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
|
|
4102
4133
|
},
|
|
4103
|
-
"System.Text.
|
|
4134
|
+
"System.Text.Encodings.Web/6.0.0": {
|
|
4104
4135
|
"type": "package",
|
|
4105
4136
|
"serviceable": true,
|
|
4106
|
-
"sha512": "sha512-
|
|
4107
|
-
"path": "system.text.
|
|
4108
|
-
"hashPath": "system.text.
|
|
4137
|
+
"sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
|
|
4138
|
+
"path": "system.text.encodings.web/6.0.0",
|
|
4139
|
+
"hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512"
|
|
4140
|
+
},
|
|
4141
|
+
"System.Text.Json/6.0.10": {
|
|
4142
|
+
"type": "package",
|
|
4143
|
+
"serviceable": true,
|
|
4144
|
+
"sha512": "sha512-NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==",
|
|
4145
|
+
"path": "system.text.json/6.0.10",
|
|
4146
|
+
"hashPath": "system.text.json.6.0.10.nupkg.sha512"
|
|
4109
4147
|
},
|
|
4110
4148
|
"System.Text.RegularExpressions/4.3.1": {
|
|
4111
4149
|
"type": "package",
|
|
@@ -4121,13 +4159,6 @@
|
|
|
4121
4159
|
"path": "system.threading/4.3.0",
|
|
4122
4160
|
"hashPath": "system.threading.4.3.0.nupkg.sha512"
|
|
4123
4161
|
},
|
|
4124
|
-
"System.Threading.Channels/9.0.4": {
|
|
4125
|
-
"type": "package",
|
|
4126
|
-
"serviceable": true,
|
|
4127
|
-
"sha512": "sha512-4qBn2H6/aXBpE/Pm3wY5yusY/pEvQz99NlWHrTUji0qCmOdbhhjaALcpmbfW2ksxlPM6i6S+QFLkpOQdyfeKYQ==",
|
|
4128
|
-
"path": "system.threading.channels/9.0.4",
|
|
4129
|
-
"hashPath": "system.threading.channels.9.0.4.nupkg.sha512"
|
|
4130
|
-
},
|
|
4131
4162
|
"System.Threading.Overlapped/4.3.0": {
|
|
4132
4163
|
"type": "package",
|
|
4133
4164
|
"serviceable": true,
|
package/dist/azmcp.dll
CHANGED
|
Binary file
|
package/dist/azmcp.exe
CHANGED
|
Binary file
|
package/dist/createdump.exe
CHANGED
|
Binary file
|
package/index.js
CHANGED
|
@@ -6,7 +6,7 @@ const childProcess = require('child_process')
|
|
|
6
6
|
|
|
7
7
|
// Check if DEBUG environment variable is set
|
|
8
8
|
const isDebugMode = process.env.DEBUG && (
|
|
9
|
-
process.env.DEBUG.toLowerCase() === 'true' ||
|
|
9
|
+
process.env.DEBUG.toLowerCase() === 'true' ||
|
|
10
10
|
process.env.DEBUG.includes('azure-mcp') ||
|
|
11
11
|
process.env.DEBUG === '*'
|
|
12
12
|
)
|
|
@@ -48,7 +48,7 @@ function runExecutable(args = []) {
|
|
|
48
48
|
|
|
49
49
|
const child = childProcess.spawn(execPath, args, {
|
|
50
50
|
stdio: 'inherit',
|
|
51
|
-
shell:
|
|
51
|
+
shell: false
|
|
52
52
|
})
|
|
53
53
|
|
|
54
54
|
return new Promise((resolve) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp-win32-arm64",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure, for win32 on arm64",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"homepage": "https://github.com/Azure/azure-mcp#readme",
|
|
Binary file
|