Skip to main content
Glama
rspace-os

RSpace MCP Server

Official
by rspace-os

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

TableJSON Schema
NameRequiredDescriptionDefault
can_store_containersNo
can_store_samplesNo
descriptionNo
nameYes
parent_container_idNo
tagsNo

Implementation Reference

  • main.py:864-894 (handler)
    The MCP tool handler for 'create_list_container'. Decorated with @mcp.tool for automatic registration. Processes tags and parent location, then calls the underlying inventory client to create the list container.
    def create_list_container( name: str, description: str = None, tags: List[str] = None, can_store_containers: bool = True, can_store_samples: bool = True, parent_container_id: Union[int, str] = None ) -> dict: """ 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 """ tag_objects = i.gen_tags(tags) if tags else [] location = i.TopLevelTargetLocation() if parent_container_id: location = i.ListContainerTargetLocation(parent_container_id) return inv_cli.create_list_container( name=name, description=description, tags=tag_objects, can_store_containers=can_store_containers, can_store_samples=can_store_samples, location=location )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rspace-os/rspace-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server