get_test
Fetch a test by ID to retrieve its details and current status for streamlined test management and reporting.
Instructions
Get a test by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test_id | Yes | Test ID |
Fetch a test by ID to retrieve its details and current status for streamlined test management and reporting.
Get a test by ID
| Name | Required | Description | Default |
|---|---|---|---|
| test_id | Yes | Test ID |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only repeats the operation implied by the name ('Get') and does not disclose outcomes for missing IDs, authentication requirements, or other behavioral characteristics.
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 with no filler words. It conveys the essential purpose efficiently.
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 one-parameter read operation, this is minimally adequate. However, without annotations or an output schema, the description does not hint at the return format or edge-case behavior, leaving some ambiguity for an agent.
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?
Schema description coverage is 100%, with test_id documented as a number and described as 'Test ID'. The description adds no new parameter semantics beyond the schema, so the baseline of 3 applies.
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 the specific operation (get) on a specific resource (test) and the selection criterion (by ID). It clearly differentiates from the sibling get_tests, which likely lists tests, and from other get_* tools by naming the resource.
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 phrase 'by ID' implies the tool should be used when a specific test_id is known, and the sibling get_tests exists for listing. However, there is no explicit guidance about when to choose this over alternatives or any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.