Skip to main content
Glama

get_tcm_suite_by_id

Retrieve test case management suite details by ID from Zebrunner projects to access test structure and execution data.

Instructions

🔍 Find TCM suite by ID with comprehensive search

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_keyYesProject key (e.g., 'android' or 'ANDROID')
suite_idYesSuite ID to find
only_root_suitesNoSearch only in root suites
formatNoOutput formatjson
include_clickable_linksNoInclude clickable links to Zebrunner web UI

Implementation Reference

  • Core helper function that implements getTCMTestSuiteById - finds and returns a specific test suite by its ID from a list of suites. This matches the tool name 'get_tcm_suite_by_id' (camelCase equivalent).
    static getTCMTestSuiteById(suites: ZebrunnerTestSuite[], id: number): ZebrunnerTestSuite | null {
      return suites.find(s => s.id === id) || null;
    }
  • Usage of getTCMTestSuiteById in enhanced client to enrich test cases with full suite information.
    const fullSuite = HierarchyProcessor.getTCMTestSuiteById(processedSuites, foundSuiteId);
  • Internal usage of getTCMTestSuiteById within hierarchy processing to traverse parent suites.
    const parentSuite = this.getTCMTestSuiteById(suites, currentSuite.parentSuiteId);
Behavior2/5

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

No annotations are provided, so the description carries full burden. It mentions 'comprehensive search' but doesn't disclose behavioral traits like whether this is a read-only operation, if it requires authentication, rate limits, error handling, or what 'comprehensive' entails (e.g., depth of data returned). This leaves significant gaps for a tool with 5 parameters and no output schema.

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

Conciseness5/5

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

The description is a single, efficient sentence with zero waste. It's front-loaded with the core purpose and uses an emoji for visual emphasis without adding fluff. Every word earns its place, making it highly concise and well-structured.

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?

Given 5 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain the return format, what 'comprehensive search' includes, or behavioral aspects like safety or performance. For a tool with this complexity, more context is needed to guide effective use.

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 description coverage is 100%, so parameters are well-documented in the schema. The description adds no additional meaning beyond implying ID-based search, which is already clear from the schema. Baseline 3 is appropriate as the schema does the heavy lifting, but the description doesn't compensate with extra context like parameter interactions.

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?

The description states a clear purpose: 'Find TCM suite by ID with comprehensive search' specifies the verb ('Find'), resource ('TCM suite'), and method ('by ID'). It distinguishes from siblings like 'get_all_tcm_test_case_suites_by_project' (which lists all suites) by focusing on ID-based retrieval, but doesn't explicitly name alternatives or contrast scope beyond the 'comprehensive search' hint.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives is provided. The description mentions 'comprehensive search' but doesn't clarify what that entails or differentiate from siblings like 'get_suite_hierarchy' or 'get_root_suites'. Usage context is implied (ID-based lookup) but lacks exclusions or prerequisites.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/maksimsarychau/mcp-zebrunner'

If you have feedback or need assistance with the MCP directory API, please join our Discord server