create_list_container
Create folders, boxes, or other organizational containers for inventory management. Configure storage permissions for different item types and optionally nest containers within a hierarchy.
Instructions
Creates a simple list-based container for organizing inventory
Usage: Create folders, boxes, or other containers without specific positioning Storage permissions: Configure what types of items can be stored Hierarchy: Optionally nest within another container
Returns: Created container information with storage settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
can_store_containers | No | ||
can_store_samples | No | ||
description | No | ||
name | Yes | ||
parent_container_id | No | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"can_store_containers": {
"default": true,
"title": "Can Store Containers",
"type": "boolean"
},
"can_store_samples": {
"default": true,
"title": "Can Store Samples",
"type": "boolean"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"parent_container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"default": null,
"title": "Parent Container Id"
},
"tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}