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
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Group ID |
Implementation Reference
- src/tools/groups.ts:6-20 (handler)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 }; } } );