Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_get_project_users

Retrieve project team members from ticket assignees by providing the project UUID, receiving each user's id, name, email, role, and designation.

Instructions

Get all team members mapped to a project (derived from ticket assignees). Returns {id, name, email, role, designation} per user.

Args: project_id: The project UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It makes the read-only nature clear via 'Get' and usefully reveals that membership is not stored separately but derived from ticket assignees, which is a non-obvious behavioral trait. It does not discuss authentication or edge cases, but for a simple list retrieval this is adequate.

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 short and front-loaded: the core purpose is in the first sentence, the return shape follows immediately, and the parameter is documented separately. Every sentence contributes useful information without repetition or fluff.

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

Completeness5/5

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

For a one-parameter getter with an output schema, the description supplies everything needed to invoke it correctly: purpose, data source, return object fields, and parameter format. Nothing critical is missing for an agent to select and call the tool.

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

Parameters4/5

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

The schema gives only `project_id` as a string with title 'Project Id,' so schem coverage is effectively 0%. The description compensates by specifying that the parameter is 'The project UUID,' adding format semantics absent from the schema. For a single required parameter, this is sufficient.

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

Purpose5/5

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

The description names a specific verb and resource: 'Get all team members mapped to a project.' It also adds a clarifying qualifier ('derived from ticket assignees') that separates it from get_project, list_users, and other project/user getters. The tool's purpose is immediately distinguishable from its siblings.

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

Usage Guidelines4/5

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

The description gives clear context for when to call it: retrieving the team member set for a given project. It does not explicitly name alternatives or state when not to use it, but the narrow getter purpose, combined with the sibling list, makes the intended use obvious enough.

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

Deploy Server

Other Tools