Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 12 additions & 0 deletions servers/Azure.Mcp.Server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

The Azure MCP Server updates automatically by default whenever a new release comes out 🚀. We ship updates twice a week on Tuesdays and Thursdays 😊

## 0.8.3 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

- Fixed problem where help option (`--help`) was showing an error and enabling it across all commands and command groups.

### Other Changes

## 0.8.2 (2025-09-25)

### Features Added
Expand Down