@azure/mcp-win32-arm64 0.0.15 โ†’ 0.0.17

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 CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  [![Install with NPX in VS Code](https://img.shields.io/badge/VS_Code-Install_Azure_MCP_Server-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](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) [![Install with NPX in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install_Azure_MCP_Server-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](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
 
@@ -116,7 +116,11 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
116
116
  - Support for template discovery, template initialization, provisioning and deployment
117
117
  - Cross-platform compatibility
118
118
 
119
- For detailed command documentation and examples, see [Azure MCP Commands](docs/azmcp-commands.md).
119
+ ### ๐Ÿ›ก๏ธ Azure Best Practices
120
+ - Get secure, production-grade Azure SDK best practices for effective code generation.
121
+
122
+ For detailed command documentation and examples, see [Azure MCP Commands](https://github.com/Azure/azure-mcp/blob/main/docs/azmcp-commands.md).
123
+
120
124
 
121
125
  ## ๐Ÿ”Œ Getting Started
122
126
 
@@ -131,7 +135,9 @@ The Azure MCP Server provides Azure SDK and Azure CLI developer tools. It can be
131
135
  * [๐Ÿ’ซ Stable release](https://code.visualstudio.com/download)
132
136
  * [๐Ÿ”ฎ Insiders release](https://code.visualstudio.com/insiders)
133
137
  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
134
- 3. Open VS Code in an empty folder
138
+ 3. Install [Node.js](https://nodejs.org/en/download) 20 or later
139
+ * Ensure `node` and `npm` are in your path
140
+ 4. Open VS Code in an empty folder
135
141
 
136
142
  ### Installation
137
143
 
@@ -164,6 +170,38 @@ For a step-by-step installation, follow these instructions:
164
170
  }
165
171
  ```
166
172
 
173
+ #### Docker Install
174
+
175
+ For a step-by-step installation, follow these instructions:
176
+ 1. Clone repository
177
+ 2. From repository root, build Docker image: `docker build -t azure/azuremcp .`
178
+ 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:
179
+ ```json
180
+ AZURE_TENANT_ID={YOUR_AZURE_TENANT_ID}
181
+ AZURE_CLIENT_ID={YOUR_AZURE_CLIENT_ID}
182
+ AZURE_CLIENT_SECRET={YOUR_AZURE_CLIENT_SECRET}
183
+ ```
184
+ 1. Add `.vscode/mcp.json` or update existing MCP configuration. Replace `/full/path/to/.env` with a path to your `.env` file.
185
+ ```json
186
+ {
187
+ "servers": {
188
+ "Azure MCP Server": {
189
+ "command": "docker",
190
+ "args": [
191
+ "run",
192
+ "-i",
193
+ "--rm",
194
+ "azure/azuremcp",
195
+ "--env-file",
196
+ "/full/path/to/.env"
197
+ ]
198
+ }
199
+ }
200
+ }
201
+ ```
202
+
203
+ Optionally, customers can use `--env` or `--volume` to pass authentication values.
204
+
167
205
  ## ๐Ÿงช Test the Azure MCP Server
168
206
 
169
207
  1. Open GitHub Copilot in VS Code and [switch to Agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode)
@@ -200,7 +238,7 @@ More end-to-end MCP client/agent guides are coming soon!
200
238
 
201
239
  ## ๐Ÿ“ Troubleshooting
202
240
 
203
- See [Troubleshooting guide](/TROUBLESHOOTING.md) for help with common issues and logging.
241
+ See [Troubleshooting guide](https://github.com/Azure/azure-mcp/blob/main/TROUBLESHOOTING.md) for help with common issues and logging.
204
242
 
205
243
  ## ๐Ÿ”‘ Authentication
206
244
 
@@ -214,9 +252,9 @@ The Azure MCP Server seamlessly integrates with your host operating system's aut
214
252
  6. **Azure Developer CLI** (`AzureDeveloperCliCredential`) - Uses your azd login
215
253
  7. **Interactive Browser** (`InteractiveBrowserCredential`) - Falls back to browser-based login if needed
216
254
 
217
- If you're already logged in through any of these methods, the Azure MCP Server will automatically use those credentials.
255
+ 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).
218
256
 
219
- If you're running into any issues with authentication, visit our [troubleshooting guide](/TROUBLESHOOTING.md).
257
+ If you're running into any issues with authentication, visit our [troubleshooting guide](https://github.com/Azure/azure-mcp/blob/main/TROUBLESHOOTING.md).
220
258
 
221
259
  ### Production Credentials
222
260
 
@@ -238,7 +276,7 @@ MCP as a phenomenon is very novel and cutting-edge. As with all new technology s
238
276
 
239
277
  We welcome contributions to the Azure MCP Server! Whether you're fixing bugs, adding new features, or improving documentation, your contributions are welcome.
240
278
 
241
- Please read our [Contributing Guide](/CONTRIBUTING.md) for guidelines on:
279
+ Please read our [Contributing Guide](https://github.com/Azure/azure-mcp/blob/main/CONTRIBUTING.md) for guidelines on:
242
280
 
243
281
  - ๐Ÿ› ๏ธ Setting up your development environment
244
282
  - โœจ Adding new commands
@@ -252,4 +290,4 @@ This project has adopted the
252
290
  For more information, see the
253
291
  [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
254
292
  or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
255
- with any additional questions or comments.
293
+ with any additional questions or comments.
Binary file
Binary file
Binary file
@@ -7,7 +7,7 @@
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v9.0": {},
9
9
  ".NETCoreApp,Version=v9.0/win-arm64": {
10
- "azmcp/0.0.15": {
10
+ "azmcp/0.0.17": {
11
11
  "dependencies": {
12
12
  "Azure.Core": "1.45.0",
13
13
  "Azure.Data.AppConfiguration": "1.6.0",
@@ -35,8 +35,8 @@
35
35
  "Microsoft.Extensions.Hosting": "9.0.4",
36
36
  "Microsoft.Identity.Client.Broker": "4.67.2",
37
37
  "Microsoft.NET.ILLink.Tasks": "9.0.1",
38
- "ModelContextProtocol": "0.1.0-preview.11",
39
- "ModelContextProtocol.AspNetCore": "0.1.0-preview.11",
38
+ "ModelContextProtocol": "0.1.0-preview.13",
39
+ "ModelContextProtocol.AspNetCore": "0.1.0-preview.13",
40
40
  "Newtonsoft.Json": "13.0.3",
41
41
  "Npgsql": "9.0.3",
42
42
  "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.11.2",
@@ -157,6 +157,10 @@
157
157
  "assemblyVersion": "9.0.0.0",
158
158
  "fileVersion": "9.0.124.61010"
159
159
  },
160
+ "System.Diagnostics.DiagnosticSource.dll": {
161
+ "assemblyVersion": "9.0.0.0",
162
+ "fileVersion": "9.0.124.61010"
163
+ },
160
164
  "System.Diagnostics.FileVersionInfo.dll": {
161
165
  "assemblyVersion": "9.0.0.0",
162
166
  "fileVersion": "9.0.124.61010"
@@ -597,10 +601,18 @@
597
601
  "assemblyVersion": "9.0.0.0",
598
602
  "fileVersion": "9.0.124.61010"
599
603
  },
604
+ "System.Text.Json.dll": {
605
+ "assemblyVersion": "9.0.0.0",
606
+ "fileVersion": "9.0.124.61010"
607
+ },
600
608
  "System.Text.RegularExpressions.dll": {
601
609
  "assemblyVersion": "9.0.0.0",
602
610
  "fileVersion": "9.0.124.61010"
603
611
  },
612
+ "System.Threading.Channels.dll": {
613
+ "assemblyVersion": "9.0.0.0",
614
+ "fileVersion": "9.0.124.61010"
615
+ },
604
616
  "System.Threading.Overlapped.dll": {
605
617
  "assemblyVersion": "9.0.0.0",
606
618
  "fileVersion": "9.0.124.61010"
@@ -1347,7 +1359,7 @@
1347
1359
  "dependencies": {
1348
1360
  "Azure.Core": "1.45.0",
1349
1361
  "System.ClientModel": "1.4.0-beta.1",
1350
- "System.Text.Json": "9.0.4"
1362
+ "System.Text.Json": "6.0.10"
1351
1363
  },
1352
1364
  "runtime": {
1353
1365
  "lib/netstandard2.0/Azure.ResourceManager.dll": {
@@ -1361,7 +1373,7 @@
1361
1373
  "Azure.Core": "1.45.0",
1362
1374
  "Azure.ResourceManager": "1.13.0",
1363
1375
  "System.ClientModel": "1.4.0-beta.1",
1364
- "System.Text.Json": "9.0.4"
1376
+ "System.Text.Json": "6.0.10"
1365
1377
  },
1366
1378
  "runtime": {
1367
1379
  "lib/net8.0/Azure.ResourceManager.AppConfiguration.dll": {
@@ -1375,7 +1387,7 @@
1375
1387
  "Azure.Core": "1.45.0",
1376
1388
  "Azure.ResourceManager": "1.13.0",
1377
1389
  "System.ClientModel": "1.4.0-beta.1",
1378
- "System.Text.Json": "9.0.4"
1390
+ "System.Text.Json": "6.0.10"
1379
1391
  },
1380
1392
  "runtime": {
1381
1393
  "lib/netstandard2.0/Azure.ResourceManager.CosmosDB.dll": {
@@ -1388,7 +1400,7 @@
1388
1400
  "dependencies": {
1389
1401
  "Azure.Core": "1.45.0",
1390
1402
  "Azure.ResourceManager": "1.13.0",
1391
- "System.Text.Json": "9.0.4"
1403
+ "System.Text.Json": "6.0.10"
1392
1404
  },
1393
1405
  "runtime": {
1394
1406
  "lib/netstandard2.0/Azure.ResourceManager.Kusto.dll": {
@@ -1402,7 +1414,7 @@
1402
1414
  "Azure.Core": "1.45.0",
1403
1415
  "Azure.ResourceManager": "1.13.0",
1404
1416
  "System.ClientModel": "1.4.0-beta.1",
1405
- "System.Text.Json": "9.0.4"
1417
+ "System.Text.Json": "6.0.10"
1406
1418
  },
1407
1419
  "runtime": {
1408
1420
  "lib/netstandard2.0/Azure.ResourceManager.OperationalInsights.dll": {
@@ -1416,7 +1428,7 @@
1416
1428
  "Azure.Core": "1.45.0",
1417
1429
  "Azure.ResourceManager": "1.13.0",
1418
1430
  "System.ClientModel": "1.4.0-beta.1",
1419
- "System.Text.Json": "9.0.4"
1431
+ "System.Text.Json": "6.0.10"
1420
1432
  },
1421
1433
  "runtime": {
1422
1434
  "lib/netstandard2.0/Azure.ResourceManager.PostgreSql.dll": {
@@ -1430,7 +1442,7 @@
1430
1442
  "Azure.Core": "1.45.0",
1431
1443
  "Azure.ResourceManager": "1.13.0",
1432
1444
  "System.ClientModel": "1.4.0-beta.1",
1433
- "System.Text.Json": "9.0.4"
1445
+ "System.Text.Json": "6.0.10"
1434
1446
  },
1435
1447
  "runtime": {
1436
1448
  "lib/netstandard2.0/Azure.ResourceManager.Search.dll": {
@@ -1444,7 +1456,7 @@
1444
1456
  "Azure.Core": "1.45.0",
1445
1457
  "Azure.ResourceManager": "1.13.0",
1446
1458
  "System.ClientModel": "1.4.0-beta.1",
1447
- "System.Text.Json": "9.0.4"
1459
+ "System.Text.Json": "6.0.10"
1448
1460
  },
1449
1461
  "runtime": {
1450
1462
  "lib/net8.0/Azure.ResourceManager.Storage.dll": {
@@ -1469,7 +1481,7 @@
1469
1481
  "dependencies": {
1470
1482
  "Azure.Core": "1.45.0",
1471
1483
  "System.Memory": "4.5.5",
1472
- "System.Text.Json": "9.0.4",
1484
+ "System.Text.Json": "6.0.10",
1473
1485
  "System.Threading.Tasks.Extensions": "4.5.4"
1474
1486
  },
1475
1487
  "runtime": {
@@ -1518,7 +1530,7 @@
1518
1530
  "System.Buffers": "4.5.1",
1519
1531
  "System.Collections.Immutable": "5.0.0",
1520
1532
  "System.Configuration.ConfigurationManager": "6.0.0",
1521
- "System.Diagnostics.DiagnosticSource": "9.0.4",
1533
+ "System.Diagnostics.DiagnosticSource": "9.0.0",
1522
1534
  "System.Memory": "4.5.5",
1523
1535
  "System.Net.Http": "4.3.4",
1524
1536
  "System.Numerics.Vectors": "4.5.0",
@@ -1608,28 +1620,11 @@
1608
1620
  }
1609
1621
  },
1610
1622
  "Microsoft.CSharp/4.5.0": {},
1611
- "Microsoft.Extensions.AI/9.4.0-preview.1.25207.5": {
1612
- "dependencies": {
1613
- "Microsoft.Extensions.AI.Abstractions": "9.4.0-preview.1.25207.5",
1614
- "Microsoft.Extensions.Caching.Abstractions": "9.0.4",
1615
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
1616
- "Microsoft.Extensions.Logging.Abstractions": "9.0.4",
1617
- "System.Diagnostics.DiagnosticSource": "9.0.4",
1618
- "System.Text.Json": "9.0.4",
1619
- "System.Threading.Channels": "9.0.4"
1620
- },
1621
- "runtime": {
1622
- "lib/net9.0/Microsoft.Extensions.AI.dll": {
1623
- "assemblyVersion": "9.4.0.0",
1624
- "fileVersion": "9.400.25.20705"
1625
- }
1626
- }
1627
- },
1628
- "Microsoft.Extensions.AI.Abstractions/9.4.0-preview.1.25207.5": {
1623
+ "Microsoft.Extensions.AI.Abstractions/9.4.4-preview.1.25259.16": {
1629
1624
  "runtime": {
1630
1625
  "lib/net9.0/Microsoft.Extensions.AI.Abstractions.dll": {
1631
1626
  "assemblyVersion": "9.4.0.0",
1632
- "fileVersion": "9.400.25.20705"
1627
+ "fileVersion": "9.400.425.25916"
1633
1628
  }
1634
1629
  }
1635
1630
  },
@@ -2038,7 +2033,7 @@
2038
2033
  "Microsoft.Identity.Client/4.67.2": {
2039
2034
  "dependencies": {
2040
2035
  "Microsoft.IdentityModel.Abstractions": "6.35.0",
2041
- "System.Diagnostics.DiagnosticSource": "9.0.4"
2036
+ "System.Diagnostics.DiagnosticSource": "9.0.0"
2042
2037
  },
2043
2038
  "runtime": {
2044
2039
  "lib/net8.0/Microsoft.Identity.Client.dll": {
@@ -2119,10 +2114,9 @@
2119
2114
  }
2120
2115
  }
2121
2116
  },
2122
- "ModelContextProtocol/0.1.0-preview.11": {
2117
+ "ModelContextProtocol/0.1.0-preview.13": {
2123
2118
  "dependencies": {
2124
- "Microsoft.Extensions.AI": "9.4.0-preview.1.25207.5",
2125
- "Microsoft.Extensions.AI.Abstractions": "9.4.0-preview.1.25207.5",
2119
+ "Microsoft.Extensions.AI.Abstractions": "9.4.4-preview.1.25259.16",
2126
2120
  "Microsoft.Extensions.Hosting.Abstractions": "9.0.4",
2127
2121
  "Microsoft.Extensions.Logging.Abstractions": "9.0.4",
2128
2122
  "System.Net.ServerSentEvents": "10.0.0-preview.3.25171.5"
@@ -2134,9 +2128,9 @@
2134
2128
  }
2135
2129
  }
2136
2130
  },
2137
- "ModelContextProtocol.AspNetCore/0.1.0-preview.11": {
2131
+ "ModelContextProtocol.AspNetCore/0.1.0-preview.13": {
2138
2132
  "dependencies": {
2139
- "ModelContextProtocol": "0.1.0-preview.11"
2133
+ "ModelContextProtocol": "0.1.0-preview.13"
2140
2134
  },
2141
2135
  "runtime": {
2142
2136
  "lib/net9.0/ModelContextProtocol.AspNetCore.dll": {
@@ -2179,7 +2173,7 @@
2179
2173
  },
2180
2174
  "OpenTelemetry.Api/1.11.2": {
2181
2175
  "dependencies": {
2182
- "System.Diagnostics.DiagnosticSource": "9.0.4"
2176
+ "System.Diagnostics.DiagnosticSource": "9.0.0"
2183
2177
  },
2184
2178
  "runtime": {
2185
2179
  "lib/net9.0/OpenTelemetry.Api.dll": {
@@ -2480,14 +2474,7 @@
2480
2474
  "runtime.win.System.Diagnostics.Debug": "4.3.0"
2481
2475
  }
2482
2476
  },
2483
- "System.Diagnostics.DiagnosticSource/9.0.4": {
2484
- "runtime": {
2485
- "lib/net9.0/System.Diagnostics.DiagnosticSource.dll": {
2486
- "assemblyVersion": "9.0.0.0",
2487
- "fileVersion": "9.0.425.16305"
2488
- }
2489
- }
2490
- },
2477
+ "System.Diagnostics.DiagnosticSource/9.0.0": {},
2491
2478
  "System.Diagnostics.EventLog/9.0.4": {
2492
2479
  "runtime": {
2493
2480
  "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
@@ -2617,7 +2604,7 @@
2617
2604
  "Microsoft.NETCore.Platforms": "1.1.1",
2618
2605
  "System.Collections": "4.3.0",
2619
2606
  "System.Diagnostics.Debug": "4.3.0",
2620
- "System.Diagnostics.DiagnosticSource": "9.0.4",
2607
+ "System.Diagnostics.DiagnosticSource": "9.0.0",
2621
2608
  "System.Diagnostics.Tracing": "4.3.0",
2622
2609
  "System.Globalization": "4.3.0",
2623
2610
  "System.Globalization.Extensions": "4.3.0",
@@ -2885,12 +2872,15 @@
2885
2872
  "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
2886
2873
  }
2887
2874
  },
2888
- "System.Text.Json/9.0.4": {
2889
- "runtime": {
2890
- "lib/net9.0/System.Text.Json.dll": {
2891
- "assemblyVersion": "9.0.0.0",
2892
- "fileVersion": "9.0.425.16305"
2893
- }
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"
2894
2884
  }
2895
2885
  },
2896
2886
  "System.Text.RegularExpressions/4.3.1": {
@@ -2904,14 +2894,6 @@
2904
2894
  "System.Threading.Tasks": "4.3.0"
2905
2895
  }
2906
2896
  },
2907
- "System.Threading.Channels/9.0.4": {
2908
- "runtime": {
2909
- "lib/net9.0/System.Threading.Channels.dll": {
2910
- "assemblyVersion": "9.0.0.0",
2911
- "fileVersion": "9.0.425.16305"
2912
- }
2913
- }
2914
- },
2915
2897
  "System.Threading.Overlapped/4.3.0": {
2916
2898
  "dependencies": {
2917
2899
  "Microsoft.NETCore.Platforms": "1.1.1",
@@ -2944,7 +2926,7 @@
2944
2926
  }
2945
2927
  },
2946
2928
  "libraries": {
2947
- "azmcp/0.0.15": {
2929
+ "azmcp/0.0.17": {
2948
2930
  "type": "project",
2949
2931
  "serviceable": false,
2950
2932
  "sha512": ""
@@ -3169,19 +3151,12 @@
3169
3151
  "path": "microsoft.csharp/4.5.0",
3170
3152
  "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
3171
3153
  },
3172
- "Microsoft.Extensions.AI/9.4.0-preview.1.25207.5": {
3173
- "type": "package",
3174
- "serviceable": true,
3175
- "sha512": "sha512-O6J7OrhrrAmhIsNml/3iR2Wqg8oFvvCfEq0sECUtlzyfqUFMSKNq3gqH999n7QAi5k1KdsCm6MlNbnFnjWEgKw==",
3176
- "path": "microsoft.extensions.ai/9.4.0-preview.1.25207.5",
3177
- "hashPath": "microsoft.extensions.ai.9.4.0-preview.1.25207.5.nupkg.sha512"
3178
- },
3179
- "Microsoft.Extensions.AI.Abstractions/9.4.0-preview.1.25207.5": {
3154
+ "Microsoft.Extensions.AI.Abstractions/9.4.4-preview.1.25259.16": {
3180
3155
  "type": "package",
3181
3156
  "serviceable": true,
3182
- "sha512": "sha512-CptQvHk8wY+qb+AA3SoKlc5NQcXSoFNbt8Z+bAkt/tEZ61JMxFZ0dMG1AwCn14hRCUinFbxyPYXr5Zrjp99m3g==",
3183
- "path": "microsoft.extensions.ai.abstractions/9.4.0-preview.1.25207.5",
3184
- "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"
3185
3160
  },
3186
3161
  "Microsoft.Extensions.Azure/1.11.0": {
3187
3162
  "type": "package",
@@ -3470,19 +3445,19 @@
3470
3445
  "path": "microsoft.win32.systemevents/6.0.0",
3471
3446
  "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
3472
3447
  },
3473
- "ModelContextProtocol/0.1.0-preview.11": {
3448
+ "ModelContextProtocol/0.1.0-preview.13": {
3474
3449
  "type": "package",
3475
3450
  "serviceable": true,
3476
- "sha512": "sha512-TWSeMx0mcdX4pZVB0gS2ii06Ll9pz+PAG8OieTI0MG9rD4YmFBrCMKoRXf381I/S0jVjktJeFHdrJVKeSiH7BA==",
3477
- "path": "modelcontextprotocol/0.1.0-preview.11",
3478
- "hashPath": "modelcontextprotocol.0.1.0-preview.11.nupkg.sha512"
3451
+ "sha512": "sha512-FaqbPSHLakH6lYdKI9k7cb6VVnhFNFW+a9hqS/akTy9i2lvMojDcP8FQRwQVQSvZPNjaptRhues5jzi701t2LQ==",
3452
+ "path": "modelcontextprotocol/0.1.0-preview.13",
3453
+ "hashPath": "modelcontextprotocol.0.1.0-preview.13.nupkg.sha512"
3479
3454
  },
3480
- "ModelContextProtocol.AspNetCore/0.1.0-preview.11": {
3455
+ "ModelContextProtocol.AspNetCore/0.1.0-preview.13": {
3481
3456
  "type": "package",
3482
3457
  "serviceable": true,
3483
- "sha512": "sha512-sAX1QOFsZkv7nzXpgb5JVAhSx6UERg/3rZARqIMhB80Fpb5gKlKGnwEPPDOIXDLCijfm7qZY5U7YLK6u0MciWQ==",
3484
- "path": "modelcontextprotocol.aspnetcore/0.1.0-preview.11",
3485
- "hashPath": "modelcontextprotocol.aspnetcore.0.1.0-preview.11.nupkg.sha512"
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"
3486
3461
  },
3487
3462
  "Newtonsoft.Json/13.0.3": {
3488
3463
  "type": "package",
@@ -3855,12 +3830,12 @@
3855
3830
  "path": "system.diagnostics.debug/4.3.0",
3856
3831
  "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
3857
3832
  },
3858
- "System.Diagnostics.DiagnosticSource/9.0.4": {
3833
+ "System.Diagnostics.DiagnosticSource/9.0.0": {
3859
3834
  "type": "package",
3860
3835
  "serviceable": true,
3861
- "sha512": "sha512-Be0emq8bRmcK4eeJIFUt9+vYPf7kzuQrFs8Ef1CdGvXpq/uSve22PTSkRF09bF/J7wmYJ2DHf2v7GaT3vMXnwQ==",
3862
- "path": "system.diagnostics.diagnosticsource/9.0.4",
3863
- "hashPath": "system.diagnostics.diagnosticsource.9.0.4.nupkg.sha512"
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"
3864
3839
  },
3865
3840
  "System.Diagnostics.EventLog/9.0.4": {
3866
3841
  "type": "package",
@@ -4156,12 +4131,19 @@
4156
4131
  "path": "system.text.encoding.extensions/4.3.0",
4157
4132
  "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
4158
4133
  },
4159
- "System.Text.Json/9.0.4": {
4134
+ "System.Text.Encodings.Web/6.0.0": {
4160
4135
  "type": "package",
4161
4136
  "serviceable": true,
4162
- "sha512": "sha512-pYtmpcO6R3Ef1XilZEHgXP2xBPVORbYEzRP7dl0IAAbN8Dm+kfwio8aCKle97rAWXOExr292MuxWYurIuwN62g==",
4163
- "path": "system.text.json/9.0.4",
4164
- "hashPath": "system.text.json.9.0.4.nupkg.sha512"
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"
4165
4147
  },
4166
4148
  "System.Text.RegularExpressions/4.3.1": {
4167
4149
  "type": "package",
@@ -4177,13 +4159,6 @@
4177
4159
  "path": "system.threading/4.3.0",
4178
4160
  "hashPath": "system.threading.4.3.0.nupkg.sha512"
4179
4161
  },
4180
- "System.Threading.Channels/9.0.4": {
4181
- "type": "package",
4182
- "serviceable": true,
4183
- "sha512": "sha512-4qBn2H6/aXBpE/Pm3wY5yusY/pEvQz99NlWHrTUji0qCmOdbhhjaALcpmbfW2ksxlPM6i6S+QFLkpOQdyfeKYQ==",
4184
- "path": "system.threading.channels/9.0.4",
4185
- "hashPath": "system.threading.channels.9.0.4.nupkg.sha512"
4186
- },
4187
4162
  "System.Threading.Overlapped/4.3.0": {
4188
4163
  "type": "package",
4189
4164
  "serviceable": true,
package/dist/azmcp.dll CHANGED
Binary file
package/dist/azmcp.exe CHANGED
Binary file
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: true
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.15",
3
+ "version": "0.0.17",
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