Skip to main content
Glama
umzcio
by umzcio

tdx-group-get

Retrieve a TeamDynamix group by its ID to access group details and manage IT service management tasks within the TDX platform.

Instructions

Get a TDX group by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesGroup ID

Implementation Reference

  • Handler and registration for the tdx-group-get tool.
    server.tool(
      "tdx-group-get",
      "Get a TDX group by ID",
      {
        id: z.number().describe("Group ID"),
      },
      async (params) => {
        try {
          const result = await client.get(`/groups/${params.id}`);
          return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] };
        } catch (e: unknown) {
          return { content: [{ type: "text", text: String(e) }], isError: true };
        }
      }
    );

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/umzcio/TeamDynamix-MCP-Connector'

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