delete_bucket
Remove a bucket from the Memory Box MCP Server. Specify the bucket name to delete; optionally use force to delete even when it contains memories.
Instructions
Delete a bucket (empty by default, use force to delete with content)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket_name | Yes | Name of the bucket to delete | |
force | No | Force deletion even if bucket contains memories (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"bucket_name": {
"description": "Name of the bucket to delete",
"type": "string"
},
"force": {
"description": "Force deletion even if bucket contains memories (default: false)",
"type": "boolean"
}
},
"required": [
"bucket_name"
],
"type": "object"
}