@azure/mcp-darwin-arm64 0.0.15 โ†’ 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 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,7 @@ 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
+ For detailed command documentation and examples, see [Azure MCP Commands](https://github.com/Azure/azure-mcp/blob/main/docs/azmcp-commands.md).
120
120
 
121
121
  ## ๐Ÿ”Œ Getting Started
122
122
 
@@ -131,7 +131,9 @@ The Azure MCP Server provides Azure SDK and Azure CLI developer tools. It can be
131
131
  * [๐Ÿ’ซ Stable release](https://code.visualstudio.com/download)
132
132
  * [๐Ÿ”ฎ Insiders release](https://code.visualstudio.com/insiders)
133
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
134
- 3. Open VS Code in an empty folder
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
135
137
 
136
138
  ### Installation
137
139
 
@@ -164,6 +166,38 @@ For a step-by-step installation, follow these instructions:
164
166
  }
165
167
  ```
166
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
+
167
201
  ## ๐Ÿงช Test the Azure MCP Server
168
202
 
169
203
  1. Open GitHub Copilot in VS Code and [switch to Agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode)
@@ -200,7 +234,7 @@ More end-to-end MCP client/agent guides are coming soon!
200
234
 
201
235
  ## ๐Ÿ“ Troubleshooting
202
236
 
203
- 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.
204
238
 
205
239
  ## ๐Ÿ”‘ Authentication
206
240
 
@@ -214,9 +248,9 @@ The Azure MCP Server seamlessly integrates with your host operating system's aut
214
248
  6. **Azure Developer CLI** (`AzureDeveloperCliCredential`) - Uses your azd login
215
249
  7. **Interactive Browser** (`InteractiveBrowserCredential`) - Falls back to browser-based login if needed
216
250
 
217
- 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).
218
252
 
219
- 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).
220
254
 
221
255
  ### Production Credentials
222
256
 
@@ -238,7 +272,7 @@ MCP as a phenomenon is very novel and cutting-edge. As with all new technology s
238
272
 
239
273
  We welcome contributions to the Azure MCP Server! Whether you're fixing bugs, adding new features, or improving documentation, your contributions are welcome.
240
274
 
241
- 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:
242
276
 
243
277
  - ๐Ÿ› ๏ธ Setting up your development environment
244
278
  - โœจ Adding new commands
@@ -252,4 +286,4 @@ This project has adopted the
252
286
  For more information, see the
253
287
  [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
254
288
  or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
255
- with any additional questions or comments.
289
+ with any additional questions or comments.
Binary file
Binary file
Binary file
package/dist/azmcp CHANGED
Binary file
@@ -7,7 +7,7 @@
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v9.0": {},
9
9
  ".NETCoreApp,Version=v9.0/osx-arm64": {
10
- "azmcp/0.0.15": {
10
+ "azmcp/0.0.16": {
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"
@@ -1338,7 +1350,7 @@
1338
1350
  "dependencies": {
1339
1351
  "Azure.Core": "1.45.0",
1340
1352
  "System.ClientModel": "1.4.0-beta.1",
1341
- "System.Text.Json": "9.0.4"
1353
+ "System.Text.Json": "6.0.10"
1342
1354
  },
1343
1355
  "runtime": {
1344
1356
  "lib/netstandard2.0/Azure.ResourceManager.dll": {
@@ -1352,7 +1364,7 @@
1352
1364
  "Azure.Core": "1.45.0",
1353
1365
  "Azure.ResourceManager": "1.13.0",
1354
1366
  "System.ClientModel": "1.4.0-beta.1",
1355
- "System.Text.Json": "9.0.4"
1367
+ "System.Text.Json": "6.0.10"
1356
1368
  },
1357
1369
  "runtime": {
1358
1370
  "lib/net8.0/Azure.ResourceManager.AppConfiguration.dll": {
@@ -1366,7 +1378,7 @@
1366
1378
  "Azure.Core": "1.45.0",
1367
1379
  "Azure.ResourceManager": "1.13.0",
1368
1380
  "System.ClientModel": "1.4.0-beta.1",
1369
- "System.Text.Json": "9.0.4"
1381
+ "System.Text.Json": "6.0.10"
1370
1382
  },
1371
1383
  "runtime": {
1372
1384
  "lib/netstandard2.0/Azure.ResourceManager.CosmosDB.dll": {
@@ -1379,7 +1391,7 @@
1379
1391
  "dependencies": {
1380
1392
  "Azure.Core": "1.45.0",
1381
1393
  "Azure.ResourceManager": "1.13.0",
1382
- "System.Text.Json": "9.0.4"
1394
+ "System.Text.Json": "6.0.10"
1383
1395
  },
1384
1396
  "runtime": {
1385
1397
  "lib/netstandard2.0/Azure.ResourceManager.Kusto.dll": {
@@ -1393,7 +1405,7 @@
1393
1405
  "Azure.Core": "1.45.0",
1394
1406
  "Azure.ResourceManager": "1.13.0",
1395
1407
  "System.ClientModel": "1.4.0-beta.1",
1396
- "System.Text.Json": "9.0.4"
1408
+ "System.Text.Json": "6.0.10"
1397
1409
  },
1398
1410
  "runtime": {
1399
1411
  "lib/netstandard2.0/Azure.ResourceManager.OperationalInsights.dll": {
@@ -1407,7 +1419,7 @@
1407
1419
  "Azure.Core": "1.45.0",
1408
1420
  "Azure.ResourceManager": "1.13.0",
1409
1421
  "System.ClientModel": "1.4.0-beta.1",
1410
- "System.Text.Json": "9.0.4"
1422
+ "System.Text.Json": "6.0.10"
1411
1423
  },
1412
1424
  "runtime": {
1413
1425
  "lib/netstandard2.0/Azure.ResourceManager.PostgreSql.dll": {
@@ -1421,7 +1433,7 @@
1421
1433
  "Azure.Core": "1.45.0",
1422
1434
  "Azure.ResourceManager": "1.13.0",
1423
1435
  "System.ClientModel": "1.4.0-beta.1",
1424
- "System.Text.Json": "9.0.4"
1436
+ "System.Text.Json": "6.0.10"
1425
1437
  },
1426
1438
  "runtime": {
1427
1439
  "lib/netstandard2.0/Azure.ResourceManager.Search.dll": {
@@ -1435,7 +1447,7 @@
1435
1447
  "Azure.Core": "1.45.0",
1436
1448
  "Azure.ResourceManager": "1.13.0",
1437
1449
  "System.ClientModel": "1.4.0-beta.1",
1438
- "System.Text.Json": "9.0.4"
1450
+ "System.Text.Json": "6.0.10"
1439
1451
  },
1440
1452
  "runtime": {
1441
1453
  "lib/net8.0/Azure.ResourceManager.Storage.dll": {
@@ -1460,7 +1472,7 @@
1460
1472
  "dependencies": {
1461
1473
  "Azure.Core": "1.45.0",
1462
1474
  "System.Memory": "4.5.5",
1463
- "System.Text.Json": "9.0.4",
1475
+ "System.Text.Json": "6.0.10",
1464
1476
  "System.Threading.Tasks.Extensions": "4.5.4"
1465
1477
  },
1466
1478
  "runtime": {
@@ -1509,7 +1521,7 @@
1509
1521
  "System.Buffers": "4.5.1",
1510
1522
  "System.Collections.Immutable": "5.0.0",
1511
1523
  "System.Configuration.ConfigurationManager": "6.0.0",
1512
- "System.Diagnostics.DiagnosticSource": "9.0.4",
1524
+ "System.Diagnostics.DiagnosticSource": "9.0.0",
1513
1525
  "System.Memory": "4.5.5",
1514
1526
  "System.Net.Http": "4.3.4",
1515
1527
  "System.Numerics.Vectors": "4.5.0",
@@ -1599,28 +1611,11 @@
1599
1611
  }
1600
1612
  },
1601
1613
  "Microsoft.CSharp/4.5.0": {},
1602
- "Microsoft.Extensions.AI/9.4.0-preview.1.25207.5": {
1603
- "dependencies": {
1604
- "Microsoft.Extensions.AI.Abstractions": "9.4.0-preview.1.25207.5",
1605
- "Microsoft.Extensions.Caching.Abstractions": "9.0.4",
1606
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4",
1607
- "Microsoft.Extensions.Logging.Abstractions": "9.0.4",
1608
- "System.Diagnostics.DiagnosticSource": "9.0.4",
1609
- "System.Text.Json": "9.0.4",
1610
- "System.Threading.Channels": "9.0.4"
1611
- },
1612
- "runtime": {
1613
- "lib/net9.0/Microsoft.Extensions.AI.dll": {
1614
- "assemblyVersion": "9.4.0.0",
1615
- "fileVersion": "9.400.25.20705"
1616
- }
1617
- }
1618
- },
1619
- "Microsoft.Extensions.AI.Abstractions/9.4.0-preview.1.25207.5": {
1614
+ "Microsoft.Extensions.AI.Abstractions/9.4.4-preview.1.25259.16": {
1620
1615
  "runtime": {
1621
1616
  "lib/net9.0/Microsoft.Extensions.AI.Abstractions.dll": {
1622
1617
  "assemblyVersion": "9.4.0.0",
1623
- "fileVersion": "9.400.25.20705"
1618
+ "fileVersion": "9.400.425.25916"
1624
1619
  }
1625
1620
  }
1626
1621
  },
@@ -2029,7 +2024,7 @@
2029
2024
  "Microsoft.Identity.Client/4.67.2": {
2030
2025
  "dependencies": {
2031
2026
  "Microsoft.IdentityModel.Abstractions": "6.35.0",
2032
- "System.Diagnostics.DiagnosticSource": "9.0.4"
2027
+ "System.Diagnostics.DiagnosticSource": "9.0.0"
2033
2028
  },
2034
2029
  "runtime": {
2035
2030
  "lib/net8.0/Microsoft.Identity.Client.dll": {
@@ -2105,10 +2100,9 @@
2105
2100
  }
2106
2101
  }
2107
2102
  },
2108
- "ModelContextProtocol/0.1.0-preview.11": {
2103
+ "ModelContextProtocol/0.1.0-preview.13": {
2109
2104
  "dependencies": {
2110
- "Microsoft.Extensions.AI": "9.4.0-preview.1.25207.5",
2111
- "Microsoft.Extensions.AI.Abstractions": "9.4.0-preview.1.25207.5",
2105
+ "Microsoft.Extensions.AI.Abstractions": "9.4.4-preview.1.25259.16",
2112
2106
  "Microsoft.Extensions.Hosting.Abstractions": "9.0.4",
2113
2107
  "Microsoft.Extensions.Logging.Abstractions": "9.0.4",
2114
2108
  "System.Net.ServerSentEvents": "10.0.0-preview.3.25171.5"
@@ -2120,9 +2114,9 @@
2120
2114
  }
2121
2115
  }
2122
2116
  },
2123
- "ModelContextProtocol.AspNetCore/0.1.0-preview.11": {
2117
+ "ModelContextProtocol.AspNetCore/0.1.0-preview.13": {
2124
2118
  "dependencies": {
2125
- "ModelContextProtocol": "0.1.0-preview.11"
2119
+ "ModelContextProtocol": "0.1.0-preview.13"
2126
2120
  },
2127
2121
  "runtime": {
2128
2122
  "lib/net9.0/ModelContextProtocol.AspNetCore.dll": {
@@ -2165,7 +2159,7 @@
2165
2159
  },
2166
2160
  "OpenTelemetry.Api/1.11.2": {
2167
2161
  "dependencies": {
2168
- "System.Diagnostics.DiagnosticSource": "9.0.4"
2162
+ "System.Diagnostics.DiagnosticSource": "9.0.0"
2169
2163
  },
2170
2164
  "runtime": {
2171
2165
  "lib/net9.0/OpenTelemetry.Api.dll": {
@@ -2479,14 +2473,7 @@
2479
2473
  "runtime.unix.System.Diagnostics.Debug": "4.3.0"
2480
2474
  }
2481
2475
  },
2482
- "System.Diagnostics.DiagnosticSource/9.0.4": {
2483
- "runtime": {
2484
- "lib/net9.0/System.Diagnostics.DiagnosticSource.dll": {
2485
- "assemblyVersion": "9.0.0.0",
2486
- "fileVersion": "9.0.425.16305"
2487
- }
2488
- }
2489
- },
2476
+ "System.Diagnostics.DiagnosticSource/9.0.0": {},
2490
2477
  "System.Diagnostics.EventLog/9.0.4": {
2491
2478
  "runtime": {
2492
2479
  "lib/net9.0/System.Diagnostics.EventLog.dll": {
@@ -2616,7 +2603,7 @@
2616
2603
  "Microsoft.NETCore.Platforms": "1.1.1",
2617
2604
  "System.Collections": "4.3.0",
2618
2605
  "System.Diagnostics.Debug": "4.3.0",
2619
- "System.Diagnostics.DiagnosticSource": "9.0.4",
2606
+ "System.Diagnostics.DiagnosticSource": "9.0.0",
2620
2607
  "System.Diagnostics.Tracing": "4.3.0",
2621
2608
  "System.Globalization": "4.3.0",
2622
2609
  "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.Tasks/4.3.0": {
2916
2898
  "dependencies": {
2917
2899
  "Microsoft.NETCore.Platforms": "1.1.1",
@@ -2936,7 +2918,7 @@
2936
2918
  }
2937
2919
  },
2938
2920
  "libraries": {
2939
- "azmcp/0.0.15": {
2921
+ "azmcp/0.0.16": {
2940
2922
  "type": "project",
2941
2923
  "serviceable": false,
2942
2924
  "sha512": ""
@@ -3161,19 +3143,12 @@
3161
3143
  "path": "microsoft.csharp/4.5.0",
3162
3144
  "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
3163
3145
  },
3164
- "Microsoft.Extensions.AI/9.4.0-preview.1.25207.5": {
3165
- "type": "package",
3166
- "serviceable": true,
3167
- "sha512": "sha512-O6J7OrhrrAmhIsNml/3iR2Wqg8oFvvCfEq0sECUtlzyfqUFMSKNq3gqH999n7QAi5k1KdsCm6MlNbnFnjWEgKw==",
3168
- "path": "microsoft.extensions.ai/9.4.0-preview.1.25207.5",
3169
- "hashPath": "microsoft.extensions.ai.9.4.0-preview.1.25207.5.nupkg.sha512"
3170
- },
3171
- "Microsoft.Extensions.AI.Abstractions/9.4.0-preview.1.25207.5": {
3146
+ "Microsoft.Extensions.AI.Abstractions/9.4.4-preview.1.25259.16": {
3172
3147
  "type": "package",
3173
3148
  "serviceable": true,
3174
- "sha512": "sha512-CptQvHk8wY+qb+AA3SoKlc5NQcXSoFNbt8Z+bAkt/tEZ61JMxFZ0dMG1AwCn14hRCUinFbxyPYXr5Zrjp99m3g==",
3175
- "path": "microsoft.extensions.ai.abstractions/9.4.0-preview.1.25207.5",
3176
- "hashPath": "microsoft.extensions.ai.abstractions.9.4.0-preview.1.25207.5.nupkg.sha512"
3149
+ "sha512": "sha512-GD1O+Fe7aJ8Kj/vqg3NAQYvbzSczxub72qrP3v4P+40oAcrIq/O1//fIsQSDX/a815pUS3C86FnpujZ7+VFUtw==",
3150
+ "path": "microsoft.extensions.ai.abstractions/9.4.4-preview.1.25259.16",
3151
+ "hashPath": "microsoft.extensions.ai.abstractions.9.4.4-preview.1.25259.16.nupkg.sha512"
3177
3152
  },
3178
3153
  "Microsoft.Extensions.Azure/1.11.0": {
3179
3154
  "type": "package",
@@ -3462,19 +3437,19 @@
3462
3437
  "path": "microsoft.win32.systemevents/6.0.0",
3463
3438
  "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
3464
3439
  },
3465
- "ModelContextProtocol/0.1.0-preview.11": {
3440
+ "ModelContextProtocol/0.1.0-preview.13": {
3466
3441
  "type": "package",
3467
3442
  "serviceable": true,
3468
- "sha512": "sha512-TWSeMx0mcdX4pZVB0gS2ii06Ll9pz+PAG8OieTI0MG9rD4YmFBrCMKoRXf381I/S0jVjktJeFHdrJVKeSiH7BA==",
3469
- "path": "modelcontextprotocol/0.1.0-preview.11",
3470
- "hashPath": "modelcontextprotocol.0.1.0-preview.11.nupkg.sha512"
3443
+ "sha512": "sha512-FaqbPSHLakH6lYdKI9k7cb6VVnhFNFW+a9hqS/akTy9i2lvMojDcP8FQRwQVQSvZPNjaptRhues5jzi701t2LQ==",
3444
+ "path": "modelcontextprotocol/0.1.0-preview.13",
3445
+ "hashPath": "modelcontextprotocol.0.1.0-preview.13.nupkg.sha512"
3471
3446
  },
3472
- "ModelContextProtocol.AspNetCore/0.1.0-preview.11": {
3447
+ "ModelContextProtocol.AspNetCore/0.1.0-preview.13": {
3473
3448
  "type": "package",
3474
3449
  "serviceable": true,
3475
- "sha512": "sha512-sAX1QOFsZkv7nzXpgb5JVAhSx6UERg/3rZARqIMhB80Fpb5gKlKGnwEPPDOIXDLCijfm7qZY5U7YLK6u0MciWQ==",
3476
- "path": "modelcontextprotocol.aspnetcore/0.1.0-preview.11",
3477
- "hashPath": "modelcontextprotocol.aspnetcore.0.1.0-preview.11.nupkg.sha512"
3450
+ "sha512": "sha512-NYpmaVWKnIYc5mHFO9/Gfn3/vZ1hw5ve44Zon3Q4HOTPm3Ib23xm2Vm6GRCp8nUnXYES7Jcgc6FOovzf950YFw==",
3451
+ "path": "modelcontextprotocol.aspnetcore/0.1.0-preview.13",
3452
+ "hashPath": "modelcontextprotocol.aspnetcore.0.1.0-preview.13.nupkg.sha512"
3478
3453
  },
3479
3454
  "Newtonsoft.Json/13.0.3": {
3480
3455
  "type": "package",
@@ -3854,12 +3829,12 @@
3854
3829
  "path": "system.diagnostics.debug/4.3.0",
3855
3830
  "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
3856
3831
  },
3857
- "System.Diagnostics.DiagnosticSource/9.0.4": {
3832
+ "System.Diagnostics.DiagnosticSource/9.0.0": {
3858
3833
  "type": "package",
3859
3834
  "serviceable": true,
3860
- "sha512": "sha512-Be0emq8bRmcK4eeJIFUt9+vYPf7kzuQrFs8Ef1CdGvXpq/uSve22PTSkRF09bF/J7wmYJ2DHf2v7GaT3vMXnwQ==",
3861
- "path": "system.diagnostics.diagnosticsource/9.0.4",
3862
- "hashPath": "system.diagnostics.diagnosticsource.9.0.4.nupkg.sha512"
3835
+ "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==",
3836
+ "path": "system.diagnostics.diagnosticsource/9.0.0",
3837
+ "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512"
3863
3838
  },
3864
3839
  "System.Diagnostics.EventLog/9.0.4": {
3865
3840
  "type": "package",
@@ -4155,12 +4130,19 @@
4155
4130
  "path": "system.text.encoding.extensions/4.3.0",
4156
4131
  "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
4157
4132
  },
4158
- "System.Text.Json/9.0.4": {
4133
+ "System.Text.Encodings.Web/6.0.0": {
4159
4134
  "type": "package",
4160
4135
  "serviceable": true,
4161
- "sha512": "sha512-pYtmpcO6R3Ef1XilZEHgXP2xBPVORbYEzRP7dl0IAAbN8Dm+kfwio8aCKle97rAWXOExr292MuxWYurIuwN62g==",
4162
- "path": "system.text.json/9.0.4",
4163
- "hashPath": "system.text.json.9.0.4.nupkg.sha512"
4136
+ "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
4137
+ "path": "system.text.encodings.web/6.0.0",
4138
+ "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512"
4139
+ },
4140
+ "System.Text.Json/6.0.10": {
4141
+ "type": "package",
4142
+ "serviceable": true,
4143
+ "sha512": "sha512-NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==",
4144
+ "path": "system.text.json/6.0.10",
4145
+ "hashPath": "system.text.json.6.0.10.nupkg.sha512"
4164
4146
  },
4165
4147
  "System.Text.RegularExpressions/4.3.1": {
4166
4148
  "type": "package",
@@ -4176,13 +4158,6 @@
4176
4158
  "path": "system.threading/4.3.0",
4177
4159
  "hashPath": "system.threading.4.3.0.nupkg.sha512"
4178
4160
  },
4179
- "System.Threading.Channels/9.0.4": {
4180
- "type": "package",
4181
- "serviceable": true,
4182
- "sha512": "sha512-4qBn2H6/aXBpE/Pm3wY5yusY/pEvQz99NlWHrTUji0qCmOdbhhjaALcpmbfW2ksxlPM6i6S+QFLkpOQdyfeKYQ==",
4183
- "path": "system.threading.channels/9.0.4",
4184
- "hashPath": "system.threading.channels.9.0.4.nupkg.sha512"
4185
- },
4186
4161
  "System.Threading.Tasks/4.3.0": {
4187
4162
  "type": "package",
4188
4163
  "serviceable": true,
package/dist/azmcp.dll 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: 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-darwin-arm64",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Azure MCP Server - Model Context Protocol implementation for Azure, for darwin on arm64",
5
5
  "author": "Microsoft Corporation",
6
6
  "homepage": "https://github.com/Azure/azure-mcp#readme",
Binary file