Skip to main content
Glama

get_project

Retrieve complete details for a specific Codebeamer project using its numeric ID to access project information and structure.

Instructions

Get full details for a single Codebeamer project by its numeric ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYesNumeric Codebeamer project ID

Implementation Reference

  • The handler function that executes the "get_project" tool logic by calling the client.getProject method.
      async ({ projectId }) => {
        const project = await client.getProject(projectId);
        return { content: [{ type: "text", text: formatProject(project) }] };
      },
    );
  • The input schema defining the required "projectId" parameter for the "get_project" tool.
    inputSchema: {
      projectId: z
        .number()
        .int()
        .positive()
        .describe("Numeric Codebeamer project ID"),
    },
  • The registration of the "get_project" tool within the MCP server.
    server.registerTool(
      "get_project",
      {
        title: "Get Project",
        description:
          "Get full details for a single Codebeamer project by its numeric ID.",
        inputSchema: {
          projectId: z
            .number()
            .int()
            .positive()
            .describe("Numeric Codebeamer project ID"),
        },
      },
      async ({ projectId }) => {
        const project = await client.getProject(projectId);
        return { content: [{ type: "text", text: formatProject(project) }] };
      },
    );

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/3KniGHtcZ/codebeamer-mcp'

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