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
2 changes: 2 additions & 0 deletions core/Azure.Mcp.Core/src/Commands/CommandFactory.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

using System.CommandLine.Help;
using System.Diagnostics;
using System.Net;
using System.Reflection;
Expand Down Expand Up @@ -242,6 +243,7 @@ private RootCommand CreateRootCommand()
{
ConfigureCommands(subGroup);
root.Subcommands.Add(subGroup.Command);
subGroup.Command.Options.Add(new HelpOption());
}

return root;
Expand Down
2 changes: 2 additions & 0 deletions servers/Azure.Mcp.Server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ The Azure MCP Server updates automatically by default whenever a new release com

### Bugs Fixed

- Fixed problem where help option (`--help`) was showing an error and enabling it across all commands and command groups. [[#583](https://github.com/microsoft/mcp/pull/583)]

### Other Changes

## 0.8.2 (2025-09-25)
Expand Down