Skip to main content
Glama

get_shared_steps

Retrieve all shared steps from a Qase test management project by specifying project code, search query, and pagination parameters for efficient test case management.

Instructions

Get all shared steps in a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYes
limitNo
offsetNo
searchNo

Implementation Reference

  • Handler for the 'get_shared_steps' tool call. Parses input arguments using GetSharedStepsSchema and delegates to the getSharedSteps helper function.
    .with({ name: 'get_shared_steps' }, ({ arguments: args }) => { const { code, search, limit, offset } = GetSharedStepsSchema.parse(args); return getSharedSteps(code, search, limit, offset); })
  • Zod schema defining the input parameters for the get_shared_steps tool: project code, optional search, limit, and offset.
    export const GetSharedStepsSchema = z.object({ code: z.string(), search: z.string().optional(), limit: z.number().optional(), offset: z.number().optional(), });
  • src/index.ts:240-244 (registration)
    Registration of the 'get_shared_steps' tool in the ListToolsRequestSchema handler, including name, description, and input schema reference.
    { name: 'get_shared_steps', description: 'Get all shared steps in a project', inputSchema: zodToJsonSchema(GetSharedStepsSchema), },
  • Core helper function implementing the logic for retrieving shared steps: binds the client method and applies result transformation.
    export const getSharedSteps = pipe( client.sharedSteps.getSharedSteps.bind(client.sharedSteps), 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