tdx-project-update
Modify project details in TeamDynamix by providing the project ID and updated field data to reflect current status and requirements.
Instructions
Update a TDX project
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Project ID | |
| data | Yes | Project data (PascalCase TDX field names) |
Implementation Reference
- src/tools/projects.ts:66-81 (handler)Tool definition and handler implementation for tdx-project-update
server.tool( "tdx-project-update", "Update a TDX project", { id: z.number().describe("Project ID"), data: z.record(z.unknown()).describe("Project data (PascalCase TDX field names)"), }, async (params) => { try { const result = await client.post(`/projects/${params.id}`, params.data); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } catch (e: unknown) { return { content: [{ type: "text", text: String(e) }], isError: true }; } } );