Skip to content

Commit cb08d48

Browse files
committed
Storage - create blob container
1 parent b71584c commit cb08d48

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

articles/azure-mcp-server/tools/storage.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,27 @@ Example prompts include:
7676
| **Blob names** | Required | The names of the blobs to set the access tier for. Provide multiple blob names separated by spaces. Each blob name should be the full path within the container (for example, 'file1.txt' or 'folder/file2.txt'). |
7777

7878

79+
## Blob: create container
80+
81+
Create a blob container with optional blob public access.
82+
83+
Example prompts include:
84+
85+
- **Create private container**: "Create a private container named 'mycontainer' in storage account 'mystorageaccount'."
86+
- **New private blob container**: "Make a new private blob container called 'images' in storage account 'mydata'."
87+
- **Add private container**: "Add a private container named 'archive' to storage account 'contosostore'."
88+
- **Set up private container**: "Set up a private blob container named 'logs' in storage account 'prodstore'."
89+
- **Create private container (simple)**: "Create a private blob container called 'images' in storage account 'mystorageaccount'."
90+
- **Create private container (explicit access)**: "Create a blob container named 'logs' in storage account 'mydata' with access level 'private'."
91+
92+
93+
| Parameter | Required or optional | Description |
94+
|-----------|----------|-------------|
95+
| **Account** | Required | The name of the Azure Storage account. This is the unique name you chose for your storage account (for example, 'mystorageaccount'). |
96+
| **Container** | Required | The name of the container to access within the storage account. |
97+
| **Access level** | Optional | The [access tier](/azure/storage/blobs/access-tiers-overview). Default: `private`. Valid values: `private`, `blob` (allows public read access to blobs), `container` (allows public read access to both blobs and container metadata). |
98+
99+
79100
## Blob: get container details
80101

81102
The Azure MCP Server shows detailed information about a specific container in a storage account. This information includes metadata, access policies, and other properties.
@@ -93,7 +114,7 @@ Example prompts include:
93114
| **Container** | Required | The name of the container to access. |
94115

95116

96-
## Blob: List containers
117+
## Blob: list containers
97118

98119
The Azure MCP Server can list all blob containers in a storage account. This functionality helps you organize and manage your blob data.
99120

0 commit comments

Comments
 (0)