Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_update_ticket_status

Update a ticket status by specifying the status ID, name, category, and resource. Set the category to TO_DO, IN_PROGRESS, or DONE to reflect the current workflow state.

Instructions

Update a ticket status. Name, category, and resource are all required on update.

Args: status_id: The status ID. name: Status name. category: 'TO_DO', 'IN_PROGRESS', or 'DONE'. resource: 'SPRINT', 'TASK', or 'PROJECT'. description: Optional description. color: Hex color. icon: Icon identifier. pauses_sla: Whether this status pauses SLA timer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNo
nameYes
colorNo
categoryYes
resourceYes
status_idYes
pauses_slaNo
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. It discloses that name, category, and resource are required, but does not explain whether omitted optional fields are reset, whether the update is partial or full replacement, what side effects occur, or any permission requirements. This is a meaningful gap for a mutation tool.

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 compact, front-loaded with the operation, and uses a clean Args list. Every sentence adds useful information; there is no filler or redundancy.

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

Completeness3/5

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

For an 8-parameter update tool with no annotations, the description covers required fields, optional fields, and value constraints, which is solid. It falls short on update semantics—whether omitted optional fields are cleared or preserved—and offers no routing guidance, so it is adequate but not complete.

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?

Schema description coverage is 0%, and the description compensates well by listing all eight parameters and adding meaning: category and resource get explicit allowed values, color is identified as hex, and pauses_sla is explained. However, status_id ('The status ID') and icon ('Icon identifier') remain somewhat tautological.

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?

States a specific verb and resource: 'Update a ticket status.' It is clearly distinct from siblings like wetrack_update_ticket (updates a ticket) and wetrack_create_ticket_status/delete_ticket_status, and it signals the update-specific scope.

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

Usage Guidelines3/5

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

The intended use is implied by 'Update a ticket status' and the explicit required-fields note, but there is no direct guidance about when to prefer this over create/delete status tools or how it relates to wetrack_update_ticket. Context is present, but alternatives are not named.

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