blob_container_create
Create a new Azure Blob Storage container using the specified name, enabling organized data storage and management through the Azure MCP Server.
Instructions
Create a new Blob Storage container
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_name | Yes | Name of the Blob Storage container to create |
Input Schema (JSON Schema)
{
"properties": {
"container_name": {
"description": "Name of the Blob Storage container to create",
"type": "string"
}
},
"required": [
"container_name"
],
"type": "object"
}