tdx-project-get
Retrieve a TeamDynamix project by its unique ID to access project details and manage IT service workflows.
Instructions
Get a TDX project by ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Project ID |
Implementation Reference
- src/tools/projects.ts:50-64 (handler)The tool 'tdx-project-get' is registered and implemented in this block, using 'client.get' to fetch project data.
server.tool( "tdx-project-get", "Get a TDX project by ID", { id: z.number().describe("Project ID"), }, async (params) => { try { const result = await client.get(`/projects/${params.id}`); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } catch (e: unknown) { return { content: [{ type: "text", text: String(e) }], isError: true }; } } );