Skip to main content
Glama
umzcio
by umzcio

tdx-people-update

Update TDX person records by providing UID and field data to modify employee information in the system.

Instructions

Update a TDX person

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesPerson UID
dataYesPerson data (PascalCase TDX field names)

Implementation Reference

  • Handler and registration for the 'tdx-people-update' tool.
    server.tool(
      "tdx-people-update",
      "Update a TDX person",
      {
        uid: z.string().describe("Person UID"),
        data: z.record(z.unknown()).describe("Person data (PascalCase TDX field names)"),
      },
      async (params) => {
        try {
          const result = await client.post(`/people/${params.uid}`, 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