Skip to main content
Glama
akoehlerbbw

TestRail MCP Server

by akoehlerbbw

getSections

Retrieve test sections for a specific TestRail project and suite, with pagination support to navigate large sets and fetch additional pages as needed.

Instructions

Retrieves sections for a specified project and suite. Supports pagination via limit and offset parameters (default: limit=250, offset=0). Use _links.next to determine if more pages are available. / 指定されたプロジェクトとスイートのセクションを取得します。limitとoffsetパラメータでページネーションをサポートします。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of sections to return (default 250, max 250)
offsetNoNumber of sections to skip (default 0, for pagination)
suiteIdNoTestRail Suite ID (optional for single suite projects)
projectIdYesTestRail Project ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.19.9

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries full burden and does well: it discloses pagination support, default limit and offset values, and how to paginate using _links.next. It doesn't mention ordering, permissions, or side effects, but for a read-only tool this is sufficient.

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

Conciseness4/5

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

Two concise English sentences with a Japanese translation. The main purpose is stated first, followed by pagination details. Every sentence serves a purpose, though the translation adds length without new information.

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

Completeness2/5

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

The description does not explain the structure of the returned 'sections' objects, nor does it mention that the response includes a list. With no output schema, this leaves a significant gap for the agent to understand what data is returned.

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?

Schema coverage is 100% with each parameter having a description. The description adds only pagination defaults already present in the schema, providing no additional semantic context beyond the schema.

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

Purpose5/5

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

The description clearly states the action ('retrieves') and resource ('sections for a specified project and suite'), distinguishing it from siblings like getSection (singular) and other section-related tools. The verb+resource combination is specific and unambiguous.

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?

The description implies usage for listing sections but does not explicitly state when to use this tool versus alternatives like getSection for a single section or addSection for creation. No when-not-to-use or comparison with siblings is provided.

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