add_note_to_subsample
Add annotations or observations to a specific research subsample to record experimental notes, handling instructions, or observations.
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 |
|---|---|---|---|
| subsample_id | Yes | ||
| note | Yes |
Implementation Reference
- main.py:831-840 (handler)The MCP tool handler and registration for 'add_note_to_subsample'. This function implements the core logic by calling the RSpace inventory client to add a note to the specified 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)