Skip to main content
Glama
umzcio
by umzcio

tdx-people-get

Retrieve a person's information from TeamDynamix using their unique identifier (UID) to access contact details and user data.

Instructions

Get a TDX person by UID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uidYesPerson UID

Implementation Reference

  • The implementation of the 'tdx-people-get' tool. It registers the tool with the MCP server, defines its input schema (UID), and handles the logic to fetch person data via the TdxClient.
    server.tool(
      "tdx-people-get",
      "Get a TDX person by UID",
      {
        uid: z.string().describe("Person UID"),
      },
      async (params) => {
        try {
          const result = await client.get(`/people/${params.uid}`);
          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