Skip to main content
Glama
umzcio
by umzcio

tdx-project-create

Create a new TDX project with essential details like name, description, dates, budget, and custom attributes for IT service management.

Instructions

Create a new TDX project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProject name
descriptionNoProject description
accountIdNoAccount/department ID
priorityIdNoPriority ID
statusIdNoStatus ID
managerIdNoProject manager UID
startDateNoStart date (ISO)
endDateNoEnd date (ISO)
budgetedHoursNoBudgeted hours
estimatedHoursNoEstimated hours
attributesNoCustom attributes

Implementation Reference

  • Registration and schema definition for 'tdx-project-create'.
    server.tool(
      "tdx-project-create",
      "Create a new TDX project",
      {
        name: z.string().describe("Project name"),
        description: z.string().optional().describe("Project description"),
        accountId: z.number().optional().describe("Account/department ID"),
        priorityId: z.number().optional().describe("Priority ID"),
        statusId: z.number().optional().describe("Status ID"),
        managerId: z.string().optional().describe("Project manager UID"),
        startDate: z.string().optional().describe("Start date (ISO)"),
        endDate: z.string().optional().describe("End date (ISO)"),
        budgetedHours: z.number().optional().describe("Budgeted hours"),
        estimatedHours: z.number().optional().describe("Estimated hours"),
        attributes: z.array(z.object({
          id: z.number().describe("Custom attribute ID"),
          value: z.union([z.string(), z.number(), z.boolean()]).describe("Attribute value"),
        })).optional().describe("Custom attributes"),
      },
  • Handler function logic for 'tdx-project-create'.
    async (params) => {
      const body: Record<string, unknown> = {
        Name: params.name,
      };
      if (params.description !== undefined) body.Description = params.description;
      if (params.accountId !== undefined) body.AccountID = params.accountId;
      if (params.priorityId !== undefined) body.PriorityID = params.priorityId;
      if (params.statusId !== undefined) body.StatusID = params.statusId;
      if (params.managerId !== undefined) body.ManagerUID = params.managerId;
      if (params.startDate !== undefined) body.StartDate = params.startDate;
      if (params.endDate !== undefined) body.EndDate = params.endDate;
      if (params.budgetedHours !== undefined) body.BudgetedHours = params.budgetedHours;
      if (params.estimatedHours !== undefined) body.EstimatedHours = params.estimatedHours;
      if (params.attributes) {
        body.Attributes = params.attributes.map((a) => ({ ID: a.id, Value: String(a.value) }));
      }
      try {
        const result = await client.post("/projects", body);
        return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] };
      } catch (e: unknown) {
        return { content: [{ type: "text", text: String(e) }], isError: true };
      }
    }
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. 'Create a new TDX project' implies a write/mutation operation, but it doesn't disclose permissions required, whether the operation is idempotent, what happens on failure, rate limits, or what the response contains. For a creation tool with 11 parameters, this is insufficient behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that communicates the core purpose without any wasted words. It's appropriately sized for a tool with a straightforward name and doesn't bury important information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a creation tool with 11 parameters, no annotations, and no output schema, the description is inadequate. It doesn't explain what happens after creation, what IDs might be returned, error conditions, or how this tool relates to other project tools. The agent has insufficient context to use this tool effectively beyond the basic schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, meaning all parameters are documented in the schema itself. The description adds no additional parameter semantics beyond what's already in the schema descriptions. According to scoring rules, when schema coverage is high (>80%), the baseline is 3 even with no param info in the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create') and resource ('new TDX project'), making the purpose immediately understandable. However, it doesn't differentiate this tool from other creation tools like 'tdx-asset-create', 'tdx-cmdb-create', or 'tdx-kb-create' that exist in the sibling list, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites, when to choose this over other project-related tools like 'tdx-project-update', or any contextual constraints. The agent must infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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