add_note_to_subsample
Attach annotations, observations, or handling instructions to a specific subsample in RSpace to document experimental details and track changes.
Instructions
Adds annotations or observations to a specific subsample
Usage: Record experimental notes, observations, or handling instructions Returns: Updated subsample information with new note
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | ||
| subsample_id | Yes |
Implementation Reference
- main.py:831-839 (handler)The main handler function for the 'add_note_to_subsample' MCP tool. It is decorated with @mcp.tool for automatic registration and delegates the actual API call to inv_cli.add_note_to_subsample.@mcp.tool(tags={"rspace", "inventory", "samples"}) def add_note_to_subsample(subsample_id: Union[int, str], note: str) -> dict: """ Adds annotations or observations to a specific subsample Usage: Record experimental notes, observations, or handling instructions Returns: Updated subsample information with new note """ return inv_cli.add_note_to_subsample(subsample_id, note)