Skip to main content
Glama

get_item

Retrieve complete work item details from Codebeamer using its numeric ID, including status, priority, assignees, description, and custom fields.

Instructions

Get full details of a Codebeamer work item by its numeric ID. Returns status, priority, assignees, description, and custom fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemIdYesNumeric item (work item) ID

Implementation Reference

  • Implementation of the 'get_item' MCP tool. It registers the tool and handles the call by invoking the client's getItem method.
    server.registerTool(
      "get_item",
      {
        title: "Get Item",
        description:
          "Get full details of a Codebeamer work item by its numeric ID. " +
          "Returns status, priority, assignees, description, and custom fields.",
        inputSchema: {
          itemId: z
            .number()
            .int()
            .positive()
            .describe("Numeric item (work item) ID"),
        },
      },
      async ({ itemId }) => {
        const item = await client.getItem(itemId);
        return { content: [{ type: "text", text: formatItem(item) }] };
      },
    );

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