test_list
Retrieve saved test names from the YATT library to view available tests and manage your UI testing suite.
Instructions
Lists the tests saved in the YATT library (names).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve saved test names from the YATT library to view available tests and manage your UI testing suite.
Lists the tests saved in the YATT library (names).
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It clearly states this is a read-only listing action and specifies that it returns names rather than full test details. It does not mention ordering or edge cases, but those are minor for a simple list tool.
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, front-loaded sentence that contains precisely the necessary information: what is listed and what is returned. There is no filler or redundant repetition of the tool name.
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 zero-parameter tool with no output schema, this description is nearly complete. It tells the agent the tool returns test names from the YATT library. The only slight gap is the lack of any mention of response format, but that is not essential for invoking the tool correctly.
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 tool has zero parameters)Skip, so there is no parameter meaning to document. The baseline of 4 applies: the schema is complete and the description adds no misleading information.
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 names a specific verb ('Lists'), a specific resource ('tests'), and the scope ('YATT library') with an explicit output ('names'). This clearly distinguishes it from sibling tools like test_get or test_create, which cover different actions on tests.
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 implies the tool should be used when you need an overview or list of saved test names, but it does not explicitly compare against alternatives or state when not to use it. For a zero-parameter listing tool this is acceptable but not fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.