Skip to main content
Glama
deanchong
by deanchong

get_requirement_collection

Read-onlyIdempotent

Retrieve requirements from a TestMonitor project with custom filters, sorting, and pagination. Include related data like test cases and tags.

Instructions

Get all requirements. Retrieve all requirements from a project.

Apply custom filters, sorting, and pagination to find the requirements you need. Include related data using the relations parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false, so the safety profile is covered. The description adds that filters/sorting/pagination and relations are supported, but says nothing about defaults, max page size, or result volume beyond what the annotations and schema imply.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first two sentences are near-duplicates ('Get all requirements.' / 'Retrieve all requirements from a project.'), which wastes the front-loaded position. The remaining sentences are useful but the opening is redundant padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, so the description is not obliged to explain returns, but for a nested-schema, one-required-param list tool it should at least state that project_id is mandatory and give a hint about paged result shape. As written it is minimally viable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Reported schema description coverage is 0% at the top level, so the description must compensate; it does so loosely by naming filters, sorting, pagination, and relations, each mapping to nested fields (filter, order, page/limit, with). However it omits the required project_id and the free-text 'query' search field entirely.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: 'Get all requirements' / 'Retrieve all requirements from a project.' The collection-vs-singular distinction from sibling get_requirement is implicit in the name and scope, but the description never names an alternative to distinguish it explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Apply custom filters, sorting, and pagination to find the requirements you need' implies the intended retrieve-and-filter use case, but there is no when-to-use vs. when-not guidance and no routing to siblings such as get_requirement (single) or get_requirement_test_cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools