Skip to main content
Glama
umzcio
by umzcio

tdx-people-lookup

Find TDX users by searching with name, email, or username to identify people within the TeamDynamix platform.

Instructions

Quick lookup of TDX people by search string (name, email, or username)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
searchTextYesSearch string (name, email, or username)
maxResultsNoMax results to return (default 10)

Implementation Reference

  • The "tdx-people-lookup" tool definition and its asynchronous handler function implementation, which calls the TDX client to perform a lookup based on a search string.
    server.tool(
      "tdx-people-lookup",
      "Quick lookup of TDX people by search string (name, email, or username)",
      {
        searchText: z.string().describe("Search string (name, email, or username)"),
        maxResults: z.number().optional().describe("Max results to return (default 10)"),
      },
      async (params) => {
        const query: Record<string, string> = {
          searchText: params.searchText,
        };
        if (params.maxResults !== undefined) query.maxResults = String(params.maxResults);
        try {
          const result = await client.get("/people/lookup", query);
          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