get_workbenches
Retrieve available workbenches (virtual workspaces) to organize and access research data containers in RSpace.
Instructions
Retrieves all available workbenches (virtual workspaces)
Usage: Find available workspaces for organizing current work Workbenches: Special containers representing physical or logical workspaces Returns: List of all workbench containers
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- main.py:959-969 (handler)MCP tool handler function for 'get_workbenches'. Decorated with @mcp.tool for automatic registration. Executes the tool logic by delegating to inv_cli.get_workbenches(), which retrieves all workbench containers.@mcp.tool(tags={"rspace", "inventory", "containers"}) def get_workbenches() -> List[dict]: """ Retrieves all available workbenches (virtual workspaces) Usage: Find available workspaces for organizing current work Workbenches: Special containers representing physical or logical workspaces Returns: List of all workbench containers """ return inv_cli.get_workbenches()