Configure App Service built-in MCP (preview)

https://learn.microsoft.com/en-us/azure/app-service/configure-mcp-built-in?tabs=portal

App Service built-in MCP turns an existing REST API hosted on Azure App Service into a Model Context Protocol (MCP) server without writing or deploying any MCP code. The platform reads an OpenAPI specification you provide and generates an MCP tool for each operation. It then serves the MCP endpoint over streamable HTTP on a path you choose.

Expand virtual hard disks on a Linux VM with the Azure CLI

az login
az account set --subscription "Visual Studio Premium with MSDN"
az vm deallocate --resource-group myResourceGroup --name myVM

az disk list \
    --resource-group dev-desktop \
    --query '[*].{Name:name,Gb:diskSizeGb,Tier:accountType}' \
    --output table
	
az disk update \
    --resource-group dev-desktop \
    --name myDataDisk \
    --size-gb 256	
		
az vm start --resource-group myResourceGroup  --name myVM	

Original link: https://docs.microsoft.com/en-us/azure/virtual-machines/linux/expand-disks