create_bucket
Create and configure storage buckets in MinIO Storage MCP by specifying a bucket name and optional region settings for organized object storage management.
Instructions
创建存储桶
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 | |
region | No | 区域设置(可选) |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
},
"region": {
"description": "区域设置(可选)",
"type": "string"
}
},
"required": [
"bucketName"
],
"type": "object"
}