list_containers
Browse and retrieve a paginated list of top-level containers to explore the main organizational structure of research data in RSpace.
Instructions
Lists top-level containers (not nested within other containers)
Usage: Browse main container organization structure Returns: Paginated list of root-level containers
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No |
Implementation Reference
- main.py:947-956 (handler)The handler function for the 'list_containers' tool. It is decorated with @mcp.tool for automatic registration and implements listing top-level containers using pagination via the inv_cli client.@mcp.tool(tags={"rspace", "inventory", "containers"}) def list_containers(page_size: int = 20) -> dict: """ Lists top-level containers (not nested within other containers) Usage: Browse main container organization structure Returns: Paginated list of root-level containers """ pagination = i.Pagination(page_size=page_size) return inv_cli.list_top_level_containers(pagination)