Skip to main content
Glama
umzcio
by umzcio

tdx-project-get

Retrieve a TeamDynamix project by its unique ID to access project details and manage IT service workflows.

Instructions

Get a TDX project by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesProject ID

Implementation Reference

  • The tool 'tdx-project-get' is registered and implemented in this block, using 'client.get' to fetch project data.
    server.tool(
      "tdx-project-get",
      "Get a TDX project by ID",
      {
        id: z.number().describe("Project ID"),
      },
      async (params) => {
        try {
          const result = await client.get(`/projects/${params.id}`);
          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