setup_get_plots
Retrieve the names of all plots defined in a specified IC-CAP setup using its setup path.
Instructions
Get all Plot names in this Setup.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| setup_path | Yes | Setup path |
Retrieve the names of all plots defined in a specified IC-CAP setup using its setup path.
Get all Plot names in this Setup.
| Name | Required | Description | Default |
|---|---|---|---|
| setup_path | Yes | Setup path |
Changes observed during successful MCP inspections.
v0.2.2Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It clearly indicates a read-only retrieval operation, but it does not disclose behavior for invalid setup paths, empty setups, or the exact return format. For a simple getter this is adequate, but still leaves some behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, compact sentence that immediately states the action, resource, and scope. There is no filler, repetition, or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one well-described parameter, the purpose and input are clear. However, there is no output schema and no annotation, and the description does not mention return shape, empty results, or error conditions. It is minimally viable but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of the parameter descriptions, so the baseline is 3. The description's 'this Setup' ties the parameter to the concept of a setup, but it adds no additional detail beyond what the schema already states for setup_path.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get'), a clear resource ('all Plot names'), and a scoping container ('in this Setup'). This makes it immediately distinguishable from siblings such as setup_get_inputs, setup_get_outputs, plot_setup, and plot_display.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: use it when you need plot names belonging to a specific setup. It does not explicitly list alternatives or exclusions, but the operation is simple enough that the intended usage is evident from the tool name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.