Skip to main content
Glama
umzcio
by umzcio

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
NameRequiredDescriptionDefault
idYesProject ID
dataYesProject data (PascalCase TDX field names)

Implementation Reference

  • 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 };
        }
      }
    );

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