Skip to main content
Glama

get_project

Retrieve project details by code using the QASE MCP Server. Simplify test management integration by accessing project-specific data with a single API call.

Instructions

Get project by code

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYes

Implementation Reference

  • Handler for the 'get_project' tool call: parses arguments using GetProjectSchema and invokes the getProject function with the project code.
    .with({ name: 'get_project' }, ({ arguments: args }) => { const { code } = GetProjectSchema.parse(args); return getProject(code); })
  • Zod schema for validating input to get_project tool, requiring a 'code' string.
    export const GetProjectSchema = z.object({ code: z.string(), });
  • Core implementation of getProject: pipes the client.projects.getProject call through toResult for result handling.
    export const getProject = pipe( client.projects.getProject.bind(client.projects), toResult, );
  • src/index.ts:136-139 (registration)
    Tool registration in ListToolsRequestSchema handler, declaring the get_project tool with its schema.
    name: 'get_project', description: 'Get project by code', inputSchema: zodToJsonSchema(GetProjectSchema), },

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