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, );

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