create_collection
Organize documents by creating a new section or category, setting up project workspaces, or grouping content by department or topic. Customize with a name, optional description, and color for easy identification.
Instructions
Creates a new collection for organizing documents.
Use this tool when you need to:
- Create a new section or category for documents
- Set up a workspace for a new project or team
- Organize content by department or topic
- Establish a separate space for related documents
Args:
name: Name for the collection
description: Optional description of the collection's purpose
color: Optional hex color code for visual identification
(e.g. #FF0000)
Returns:
Result message with the new collection ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | ||
description | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Color"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "create_collectionArguments",
"type": "object"
}