session_list
List saved UI-testing sessions to view and manage previous test runs.
Instructions
Lists the saved sessions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List saved UI-testing sessions to view and manage previous test runs.
Lists the saved sessions.
| 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?
With no annotations present, the description must carry the behavioral disclosure burden. It indicates a read-only listing operation but does not disclose whether it returns all sessions, the result format, ordering, or any side effects. It is minimal and leaves important behavior unstated.
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 short sentence that directly states the operation. It is appropriately sized for such a simple tool with no parameters and no complex behavior.
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 parameterless listing tool with no output schema, the description is mostly sufficient to invoke it. However, it lacks any detail about what a 'session' is or what the returned list contains, which would help an agent confirm the result is what it expects.
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 input schema has zero parameters)Skip, so the baseline is 4. There are no parameter semantics for the description to clarify, and the description does not mislead about parameters.
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 states a clear verb and resource: "Lists the saved sessions." It is obvious what the tool does.among the sibling tools, though it doesn't explicitly distinguish itself from other list tools, the tool name and scope make its purpose clear.
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 no guidance on when to use this tool versus alternatives such as session_save or session_delete. There is no mention of use cases, exclusions, or conditions, leaving the agent to infer when listing sessions is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.