Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,11 @@ public override async Task<CommandResponse> ExecuteAsync(CommandContext context,

await InitializeServicesAsync(host.Services);

await host.StartAsync(CancellationToken.None);

var telemetryService = host.Services.GetRequiredService<ITelemetryService>();
LogStartTelemetry(telemetryService, options);

await host.StartAsync(CancellationToken.None);
await host.WaitForShutdownAsync(CancellationToken.None);

return context.Response;
Expand Down
1 change: 1 addition & 0 deletions servers/Azure.Mcp.Server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The Azure MCP Server updates automatically by default whenever a new release com

### Bugs Fixed
- Convert ARG usage to .NET SDK method calls of GetEntraAdministratorsAsync and ListFirewallRulesAsync to resolve the related issues ([#779](https://github.com/microsoft/mcp/issues/779) and [#855](https://github.com/microsoft/mcp/issues/855)) in `azmcp_entra_administrator_list` and `azmcp_sql_server_firewall_rule_list` commands. [[#891](https://github.com/microsoft/mcp/pull/891)]
- Fixed `ServerStarted` telemetry event not being published. [[#905](https://github.com/microsoft/mcp/pull/905)]

### Other Changes

Expand Down