Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit ba0b1e2

Browse files
authored
Prepare 0.5.6 release (#982)
* Reordered `azmcp-command.md` and `e2eTestPrompt.md` * Updated CHANGELOG * Updated the VS Code CHANGELOG
1 parent 71ade06 commit ba0b1e2

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

CHANGELOG.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,26 @@
22

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

5-
## 0.5.6 (Unreleased)
5+
## 0.5.6 (2025-08-14)
66

77
### Features Added
88

99
- Added support for listing Azure Function Apps via the command `azmcp-functionapp-list`. [[#863](https://github.com/Azure/azure-mcp/pull/863)]
10-
11-
### Breaking Changes
12-
13-
### Bugs Fixed
10+
- Added support for getting details about an Azure Storage Account via the command `azmcp-storage-account-details`. [[#934](https://github.com/Azure/azure-mcp/issues/934)]
1411

1512
### Other Changes
1613

17-
- Refactored resource group option handling: introduced single global parser-optional `--resource-group` with declarative helpers `UseResourceGroup()` / `RequireResourceGroup()` and centralized logical validation & binding. Removed all area-specific optional resource group option definitions and manual per-command bindings; updated documentation to reflect new pattern.
14+
- Refactored resource group option (`--resource-group`) handling and validation for all commands to a centralized location. [[#961](https://github.com/Azure/azure-mcp/issues/961)]
1815

1916
#### Dependency Updates
2017

21-
- Updated Azure.Monitor.Query version from `1.6.0` to `1.7.1` for AOT support.
22-
- Updated Azure.Monitor.Ingestion version from `1.1.2` to `1.2.0` for AOT support.
23-
- Updated Azure.Search.Documents version from `11.7.0-beta.4` to `11.7.0-beta.6` for AOT support.
24-
- Updated Azure.ResourceManager.ContainerRegistry version from `1.3.0` to `1.3.1` for AOT support.
25-
- Updated Azure.ResourceManager.DesktopVirtualization version from `1.3.1` to `1.3.2` for AOT support.
26-
- Updated Azure.ResourceManager.PostgreSql version from `1.3.0` to `1.3.1` for AOT support.
18+
- Updated the following dependencies to improve .NET Ahead-of-Time (AOT) compilation support: [[#967](https://github.com/Azure/azure-mcp/issues/967)] [[#969](https://github.com/Azure/azure-mcp/issues/969)]
19+
- Azure.Monitor.Query: `1.6.0``1.7.1`
20+
- Azure.Monitor.Ingestion: `1.1.2``1.2.0`
21+
- Azure.Search.Documents: `11.7.0-beta.4``11.7.0-beta.6`
22+
- Azure.ResourceManager.ContainerRegistry: `1.3.0``1.3.1`
23+
- Azure.ResourceManager.DesktopVirtualization: `1.3.1``1.3.2`
24+
- Azure.ResourceManager.PostgreSql: `1.3.0``1.3.1`
2725

2826
## 0.5.5 (2025-08-12)
2927

@@ -32,7 +30,6 @@ The Azure MCP Server updates automatically by default whenever a new release com
3230
- Added support for listing ACR (Azure Container Registry) registries in a subscription via the command `azmcp-acr-registry-list`. [[#915](https://github.com/Azure/azure-mcp/issues/915)]
3331
- Added the following Azure Storage commands:
3432
- `azmcp-storage-account-create`: Create a new Azure Storage account. [[#927](https://github.com/Azure/azure-mcp/issues/927)]
35-
- `azmcp-storage-account-details` Get details about an Azure Storage Account. [[#934](https://github.com/Azure/azure-mcp/issues/934)]
3633
- `azmcp-storage-queue-message-send`: Send a message to an Azure Storage queue. [[#794](https://github.com/Azure/azure-mcp/pull/794)]
3734
- `azmcp-storage-blob-details`: Get details about an Azure Storage blob. [[#930](https://github.com/Azure/azure-mcp/issues/930)]
3835
- `azmcp-storage-blob-container-create`: Create a new Azure Storage blob container. [[#937](https://github.com/Azure/azure-mcp/issues/937)]

docs/azmcp-commands.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -769,15 +769,14 @@ azmcp storage account create --subscription <subscription> \
769769
--allow-blob-public-access false \
770770
--enable-hierarchical-namespace false
771771

772-
773-
# List Storage accounts in a subscription
774-
azmcp storage account list --subscription <subscription>
775-
776772
# Get detailed information about a specific Storage account
777773
azmcp storage account details --subscription <subscription> \
778774
--account <account-name> \
779775
[--tenant <tenant>]
780776

777+
# List Storage accounts in a subscription
778+
azmcp storage account list --subscription <subscription>
779+
781780
# Set access tier for multiple blobs in a batch operation
782781
azmcp storage blob batch set-tier --subscription <subscription> \
783782
--account <account> \

e2eTests/e2eTestPrompts.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,8 @@ This file contains prompts used for end-to-end testing to ensure each tool is in
298298
| azmcp-storage-account-create | Create a new storage account called testaccount123 in East US region |
299299
| azmcp-storage-account-create | Create a storage account with premium performance and LRS replication |
300300
| azmcp-storage-account-create | Create a new storage account with Data Lake Storage Gen2 enabled |
301+
| azmcp-storage-account-details | Show me the details for my storage account <account_name> |
302+
| azmcp-storage-account-details | Get details about the storage account <account_name> |
301303
| azmcp-storage-account-list | List all storage accounts in my subscription including their location and SKU |
302304
| azmcp-storage-account-list | Show me my storage accounts with whether hierarchical namespace (HNS) is enabled |
303305
| azmcp-storage-account-list | Show me the storage accounts in my subscription and include HTTPS-only and public blob access settings |

eng/vscode/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11

22
# Release History
33

4-
## 0.5.6 - Unreleased
4+
## 0.5.6 - 2025-08-14
55

66
### Added
77

8-
- New VS Code settings to control Azure MCP server startup behavior:
8+
- New VS Code settings to control Azure MCP server startup behavior: [[#971](https://github.com/Azure/azure-mcp/issues/971)]
99
- `azureMcp.serverMode`: choose tool exposure mode — `single` | `namespace` (default) | `all`.
1010
- `azureMcp.readOnly`: start the server in read-only mode.
1111
- `azureMcp.enabledServices`: added drop down list to select and configure the enabled services.
12+
- Added support for listing Azure Function Apps via the `azmcp-functionapp-list` command. [[#863](https://github.com/Azure/azure-mcp/pull/863)]
13+
- Added support for getting details about an Azure Storage Account via the `azmcp-storage-account-details` command. [[#934](https://github.com/Azure/azure-mcp/issues/934)]
1214

1315
### Changed
1416

15-
### Fixed
17+
- Centralized handling and validation of the `--resource-group` option across all commands. [[#961](https://github.com/Azure/azure-mcp/issues/961)]
1618

1719
## 0.5.5 - 2025-08-12
1820

0 commit comments

Comments
 (0)