Skip to main content
Glama

get_suite

Retrieve a specific test suite from the QASE test management platform using project code and suite ID to access test case organization and structure.

Instructions

Get a specific test suite

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYes
idYes

Implementation Reference

  • MCP tool handler for 'get_suite': parses arguments using GetSuiteSchema and delegates to getSuite function.
    .with({ name: 'get_suite' }, ({ arguments: args }) => {
      const { code, id } = GetSuiteSchema.parse(args);
      return getSuite(code, id);
    })
  • src/index.ts:226-228 (registration)
    Registration of the 'get_suite' tool in the list of available tools, including name, description, and input schema.
    name: 'get_suite',
    description: 'Get a specific test suite',
    inputSchema: zodToJsonSchema(GetSuiteSchema),
  • Zod schema for validating input to get_suite tool: requires project code and suite ID.
    export const GetSuiteSchema = z.object({
      code: z.string(),
      id: z.number(),
    });
  • Helper function getSuite that pipes the client.suites.getSuite call through toResult transformation.
    export const getSuite = pipe(
      client.suites.getSuite.bind(client.suites),
      toResult,
    );
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states 'Get' implying a read operation, but doesn't clarify if this requires authentication, returns error conditions, or has any side effects like caching. This leaves gaps in understanding the tool's behavior.

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?

The description is a single, clear sentence with no wasted words, making it easy to parse. However, it could be more front-loaded with additional context to improve utility without sacrificing brevity.

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 the tool's complexity (2 required parameters, no annotations, no output schema), the description is insufficient. It doesn't explain what a 'test suite' entails, how parameters are used, or what the return value looks like, leaving the agent with significant gaps in understanding.

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

Parameters2/5

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

The input schema has 2 parameters (code and id) with 0% description coverage, so the schema provides no semantic information. The description adds no details about what these parameters mean (e.g., code could be a project code, id a numeric identifier), failing to compensate for the schema's lack of documentation.

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

Purpose3/5

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

The description 'Get a specific test suite' clearly states the verb ('Get') and resource ('test suite'), making the purpose understandable. However, it doesn't differentiate from sibling tools like 'get_suites' (plural) or 'get_case'/'get_plan' which retrieve different resources, leaving some ambiguity about scope.

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 guidance is provided on when to use this tool versus alternatives. For example, it doesn't specify if this is for retrieving a single suite by identifier versus using 'get_suites' for listing multiple suites, nor does it mention prerequisites or context for usage.

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/rikuson/mcp-qase'

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