setup_buckets
Initialize standard storage buckets to organize file management workflows using a base bucket name and user identifier for structured data organization.
Instructions
Initialize standard storage buckets for organized file management workflows
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base_bucket_name | No | Base name for buckets | storage |
| user_id | No | User identifier for organization |
Input Schema (JSON Schema)
{
"properties": {
"base_bucket_name": {
"default": "storage",
"description": "Base name for buckets",
"maxLength": 50,
"minLength": 3,
"type": "string"
},
"user_id": {
"description": "User identifier for organization",
"maxLength": 36,
"type": "string"
}
},
"required": [],
"type": "object"
}