You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-mcp-server/tools/storage.md
+22-1Lines changed: 22 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,27 @@ Example prompts include:
76
76
| **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'). |
77
77
78
78
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
+
79
100
## Blob: get container details
80
101
81
102
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:
93
114
| **Container** | Required | The name of the container to access. |
94
115
95
116
96
-
## Blob: List containers
117
+
## Blob: list containers
97
118
98
119
The Azure MCP Server can list all blob containers in a storage account. This functionality helps you organize and manage your blob data.
0 commit comments