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

Commit 63e678a

Browse files
authored
Prepare 0.5.7 release (#1014)
1 parent 982b0fd commit 63e678a

File tree

3 files changed

+45
-51
lines changed

3 files changed

+45
-51
lines changed

‎CHANGELOG.md‎

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,24 @@
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.7 (Unreleased)
5+
## 0.5.7 (2025-08-19)
66

77
### Features Added
88

9-
- Added support for the following Azure Deploy operations and Azure Quota operations: [[#626](https://github.com/Azure/azure-mcp/pull/626)]
10-
- `azmcp-deploy-app-logs-get` - Get logs from Azure applications deployed using azd.
11-
- `azmcp-deploy-iac-rules-get` - Get Infrastructure as Code rules.
12-
- `azmcp-deploy-pipeline-guidance-get` - Get guidance for creating CI/CD pipelines to provision Azure resources and deploy applications.
13-
- `azmcp-deploy-plan-get` - Generate deployment plans to construct infrastructure and deploy applications on Azure.
14-
- `azmcp-deploy-architecture-diagram-generate` - Generate Azure service architecture diagrams based on application topology.
15-
- `azmcp-quota-region-availability-list` - List available Azure regions for specific resource types.
16-
- `azmcp-quota-usage-check` - Check Azure resource usage and quota information for specific resource types and regions.
9+
- Added support for the following Azure Deploy and Azure Quota operations: [[#626](https://github.com/Azure/azure-mcp/pull/626)]
10+
- `azmcp_deploy_app_logs_get` - Get logs from Azure applications deployed using azd.
11+
- `azmcp_deploy_iac_rules_get` - Get Infrastructure as Code rules.
12+
- `azmcp_deploy_pipeline_guidance-get` - Get guidance for creating CI/CD pipelines to provision Azure resources and deploy applications.
13+
- `azmcp_deploy_plan_get` - Generate deployment plans to construct infrastructure and deploy applications on Azure.
14+
- `azmcp_deploy_architecture_diagram-generate` - Generate Azure service architecture diagrams based on application topology.
15+
- `azmcp_quota_region_availability-list` - List available Azure regions for specific resource types.
16+
- `azmcp_quota_usage_check` - Check Azure resource usage and quota information for specific resource types and regions.
1717
- Added support for listing Azure Function Apps via the command `azmcp-functionapp-list`. [[#863](https://github.com/Azure/azure-mcp/pull/863)]
18-
- Added support for importing existing certificates into Azure Key Vault via the command `azmcp-keyvault-certificate-import`. This command accepts PFX or PEM certificate data (file path, base64, or raw PEM) with optional password protection. [[#968](https://github.com/Azure/azure-mcp/issues/968)]
19-
- Added `azmcp-storage-blob-upload`: Upload a local file to an Azure Storage blob with the option to overwrite if the blob already exists. Returns blob metadata including name, container, uploaded file, last modified time, ETag, MD5 hash, and overwrite status. [[#960](https://github.com/Azure/azure-mcp/pull/960)]
20-
21-
### Breaking Changes
22-
23-
### Bugs Fixed
24-
25-
### Other Changes
18+
- Added support for importing existing certificates into Azure Key Vault via the command `azmcp-keyvault-certificate-import`. [[#968](https://github.com/Azure/azure-mcp/issues/968)]
19+
- Added support for uploading a local file to an Azure Storage blob via the command `azmcp-storage-blob-upload`. [[#960](https://github.com/Azure/azure-mcp/pull/960)]
20+
- Added support for the following Azure Service Health operations: [[#998](https://github.com/Azure/azure-mcp/pull/998)]
21+
- `azmcp-resourcehealth-availability-status-get` - Get the availability status for a specific resource.
22+
- `azmcp-resourcehealth-availability-status-list` - List availability statuses for all resources in a subscription or resource group.
2623

2724
#### Dependency Updates
2825

‎README.md‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -155,20 +155,20 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
155155
* Support for template discovery, template initialization, provisioning and deployment
156156
* Cross-platform compatibility
157157

158-
### 🚀 Azure Deploy
158+
### 🚀 Azure Deploy
159159

160-
* Generate azure service architecture diagrams from the source code
161-
* Create a deploy plan for provision and deploy the application
160+
* Generate Azure service architecture diagrams from source code
161+
* Create a deploy plan for provisioning and deploying the application
162162
* Get the application service log for a specific azd environment
163-
* Get the bicep or terraform file generation rules for the application
164-
* Get the github pipeline creation guideline for the application
163+
* Get the bicep or terraform file generation rules for an application
164+
* Get the GitHub pipeline creation guideline for an application
165165

166166
### 🧮 Azure Foundry
167167

168168
* List Azure Foundry models
169169
* Deploy foundry models
170170
* List foundry model deployments
171-
171+
172172
### ☁️ Azure Function App
173173

174174
* List Azure Function Apps
@@ -224,8 +224,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
224224

225225
### 📊 Azure Quota
226226

227-
* List the available regions
228-
* Check the quota usage
227+
* List available regions
228+
* Check quota usage
229229

230230
### 🔴 Azure Redis Cache
231231

‎docs/azmcp-commands.md‎

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ azmcp extension azd --command "init --template todo-nodejs-mongo"
381381
```bash
382382
# Get the application service log for a specific azd environment
383383
azmcp deploy app logs get --workspace-folder <workspace-folder> \
384-
--azd-env-name <azd-env-name> \
385-
[--limit <limit>]
384+
--azd-env-name <azd-env-name> \
385+
[--limit <limit>]
386386

387387
# Generate a mermaid architecture diagram for the application topology follow the schema defined in [deploy-app-topology-schema.json](../areas/deploy/src/AzureMcp.Deploy/Schemas/deploy-app-topology-schema.json)
388388
azmcp deploy architecture diagram generate --raw-mcp-tool-input <app-topology>
@@ -394,9 +394,9 @@ azmcp deploy iac rules get --deployment-tool <deployment-tool> \
394394

395395
# Get the ci/cd pipeline guidance
396396
azmcp deploy pipeline guidance get [--use-azd-pipeline-config <use-azd-pipeline-config>] \
397-
[--organization-name <organization-name>] \
398-
[--repository-name <repository-name>] \
399-
[--github-environment-name <github-environment-name>]
397+
[--organization-name <organization-name>] \
398+
[--repository-name <repository-name>] \
399+
[--github-environment-name <github-environment-name>]
400400

401401
# Get a deployment plan for a specific project
402402
azmcp deploy plan get --workspace-folder <workspace-folder> \
@@ -426,17 +426,17 @@ azmcp keyvault certificate get --subscription <subscription> \
426426
--vault <vault-name> \
427427
--name <certificate-name>
428428

429-
# Lists certificates in a key vault
430-
azmcp keyvault certificate list --subscription <subscription> \
431-
--vault <vault-name>
432-
433429
# Imports an existing certificate (PFX or PEM) into a key vault
434430
azmcp keyvault certificate import --subscription <subscription> \
435431
--vault <vault-name> \
436432
--certificate <certificate-name> \
437433
--certificate-data <path-or-base64-or-raw-pem> \
438434
[--password <pfx-password>]
439435

436+
# Lists certificates in a key vault
437+
azmcp keyvault certificate list --subscription <subscription> \
438+
--vault <vault-name>
439+
440440
# Creates a key in a key vault
441441
azmcp keyvault key create --subscription <subscription> \
442442
--vault <vault-name> \
@@ -702,15 +702,15 @@ azmcp extension azqr --subscription <subscription> \
702702
```bash
703703
# Get the available regions for the resources types
704704
azmcp quota region availability list --subscription <subscription> \
705-
--resource-types <resource-types> \
706-
[--cognitive-service-model-name <cognitive-service-model-name>] \
707-
[--cognitive-service-model-version <cognitive-service-model-version>] \
708-
[--cognitive-service-deployment-sku-name <cognitive-service-deployment-sku-name>]
705+
--resource-types <resource-types> \
706+
[--cognitive-service-model-name <cognitive-service-model-name>] \
707+
[--cognitive-service-model-version <cognitive-service-model-version>] \
708+
[--cognitive-service-deployment-sku-name <cognitive-service-deployment-sku-name>]
709709

710710
# Check the usage for Azure resources type
711711
azmcp quota usage check --subscription <subscription> \
712-
--region <region> \
713-
--resource-types <resource-types>
712+
--region <region> \
713+
--resource-types <resource-types>
714714
```
715715

716716
### Azure RBAC Operations
@@ -742,25 +742,22 @@ azmcp redis cache list accesspolicy --subscription <subscription> \
742742
--cache <cache-name>
743743
```
744744

745+
### Azure Resource Group Operations
746+
747+
```bash
748+
# List resource groups in a subscription
749+
azmcp group list --subscription <subscription>
750+
```
751+
745752
### Azure Resource Health Operations
746753

747754
```bash
748755
# Get availability status for a specific resource
749756
azmcp resourcehealth availability-status get --resourceId <resource-id>
750757

751758
# List availability statuses for all resources in a subscription
752-
azmcp resourcehealth availability-status list --subscription <subscription>
753-
754-
# List availability statuses for all resources in a specific resource group
755759
azmcp resourcehealth availability-status list --subscription <subscription> \
756-
--resource-group <resource-group>
757-
```
758-
759-
### Azure Resource Group Operations
760-
761-
```bash
762-
# List resource groups in a subscription
763-
azmcp group list --subscription <subscription>
760+
[--resource-group <resource-group>]
764761
```
765762

766763
### Azure Service Bus Operations

0 commit comments

Comments
 (0)