create_bucket
Organize and manage memories efficiently by creating named buckets in Memory Box MCP Server, enabling structured storage and retrieval using semantic understanding and vector embeddings.
Instructions
Create a new bucket for organizing memories
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| bucket_name | Yes | Name of the bucket to create | 
Input Schema (JSON Schema)
{
  "properties": {
    "bucket_name": {
      "description": "Name of the bucket to create",
      "type": "string"
    }
  },
  "required": [
    "bucket_name"
  ],
  "type": "object"
}