Skip to main content
Glama
umzcio
by umzcio

tdx-project-search

Search and filter TDX projects using text queries, status, priority, account, manager, and activity filters to find specific project information.

Instructions

Search TDX projects with filters

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
searchTextNoFull-text search query
statusIdsNoFilter by status IDs
priorityIdsNoFilter by priority IDs
accountIdsNoFilter by account IDs
managerUidsNoFilter by project manager UIDs
isActiveNoFilter by active status
maxResultsNoMax results to return (default 25)

Implementation Reference

  • Handler implementation for "tdx-project-search", which constructs the request body and calls the TDX client to search projects.
    server.tool(
      "tdx-project-search",
      "Search TDX projects with filters",
      {
        searchText: z.string().optional().describe("Full-text search query"),
        statusIds: z.array(z.number()).optional().describe("Filter by status IDs"),
        priorityIds: z.array(z.number()).optional().describe("Filter by priority IDs"),
        accountIds: z.array(z.number()).optional().describe("Filter by account IDs"),
        managerUids: z.array(z.string()).optional().describe("Filter by project manager UIDs"),
        isActive: z.boolean().optional().describe("Filter by active status"),
        maxResults: z.number().optional().describe("Max results to return (default 25)"),
      },
      async (params) => {
        const body: Record<string, unknown> = {};
        if (params.searchText !== undefined) body.SearchText = params.searchText;
        if (params.statusIds !== undefined) body.StatusIDs = params.statusIds;
        if (params.priorityIds !== undefined) body.PriorityIDs = params.priorityIds;
        if (params.accountIds !== undefined) body.AccountIDs = params.accountIds;
        if (params.managerUids !== undefined) body.ManagerUids = params.managerUids;
        if (params.isActive !== undefined) body.IsActive = params.isActive;
        if (params.maxResults !== undefined) body.MaxResults = params.maxResults;
        try {
          const result = await client.post("/projects/search", 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?

No annotations are provided, so the description carries full burden. It mentions 'Search' and 'filters' but doesn't disclose critical behavioral traits: whether this is read-only (likely, but not stated), what authentication is needed, pagination behavior (only mentions 'maxResults' default), rate limits, or what the output looks like (no output schema).

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 with zero waste. It's appropriately sized and front-loaded with the core purpose. Every word earns its place.

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?

Given 7 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain the search scope, result format, error conditions, or authentication requirements. For a search tool with multiple filters and no structured output documentation, more context is needed.

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?

Schema description coverage is 100%, so the schema already documents all 7 parameters thoroughly. The description adds no additional meaning about parameters beyond implying filtering capability ('with filters'), which is already covered in the schema. Baseline 3 is appropriate when schema does the heavy lifting.

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

Purpose3/5

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

The description 'Search TDX projects with filters' clearly states the verb ('Search') and resource ('TDX projects'), but it's vague about scope and doesn't differentiate from sibling tools like 'tdx-project-get' or 'tdx-project-update'. It doesn't specify whether this searches all projects or has limitations.

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?

No guidance is provided about when to use this tool versus alternatives like 'tdx-project-get' (for retrieving a specific project) or 'tdx-project-create' (for creating new projects). The description mentions 'with filters' but doesn't explain when filtering is appropriate versus using other tools.

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