Skip to main content
Glama

create_result_bulk

Bulk create test run results for Qase test management platform using this tool, enabling efficient management of multiple outcomes in a single operation.

Instructions

Create multiple test run results in bulk

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYes
idYes
resultsYes

Implementation Reference

  • Handler function that parses input arguments using CreateResultBulkSchema and delegates to createResultBulk helper.
    .with({ name: 'create_result_bulk' }, ({ arguments: args }) => { const { code, id, results } = CreateResultBulkSchema.parse(args); return createResultBulk(code, id, results); })
  • Zod schema defining the input structure for the create_result_bulk tool: code (string), id (number), results (ResultCreateBulk).
    export const CreateResultBulkSchema = z.object({ code: z.string(), id: z.number(), results: z.record(z.any()).transform((v) => v as ResultCreateBulk), });
  • src/index.ts:160-164 (registration)
    Registration of the create_result_bulk tool in the ListToolsRequestSchema handler, including name, description, and input schema reference.
    { name: 'create_result_bulk', description: 'Create multiple test run results in bulk', inputSchema: zodToJsonSchema(CreateResultBulkSchema), },
  • Helper function wrapping the Qase client API call to create results in bulk, applying toResult transformation.
    export const createResultBulk = pipe( client.results.createResultBulk.bind(client.results), 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