Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_update_ticket

Update specific fields of an existing ticket by ID, including title, status, priority, assignees, tags, due date, or sprint, while leaving unprovided fields unchanged. Fix outdated ticket information directly in WeTrack.

Instructions

Update a ticket's fields. Only fields you provide are changed.

Args: ticket_id: UUID of the ticket to update. title: New title. description: New rich HTML description. request_status_id: New status ID. request_priority_id: New priority ID. assignees: New list of assignee user UUIDs (replaces all existing assignees). summary: New short summary. story_points: New story points (positive integer). bug_type: New bug category. tags: New tag list (replaces existing). end_date: New due date (ISO datetime). parent_id: Reassign to a different parent EPIC. sprint_id: Move to a different sprint UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNo
titleNo
summaryNo
bug_typeNo
end_dateNo
assigneesNo
parent_idNo
sprint_idNo
ticket_idYes
descriptionNo
story_pointsNo
request_status_idNo
request_priority_idNo

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 burden. It discloses important mutation semantics: only provided fields change, assignees and tags replace existing values, parent_id reassigns to an EPIC, and sprint_id moves the ticket to a sprint. It stops short of explaining null-clearing behavior, permissions, or error behavior, which prevents a 5.

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 efficient: one clear lead sentence followed by compact, one-line parameter explanations. Every line adds necessary information, especially given that the schema itself contains no parameter descriptions.

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

Completeness4/5

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

The description covers all parameters, establishes partial-update behavior, and includes the required ticket_id for targeting. Since an output schema exists, not explaining return values is acceptable, but the description does not clarify whether passing null clears a field or is ignored, nor does it mention failure behavior for invalid IDs.

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

Parameters5/5

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

Schema description coverage is 0%, yet the Args block adds meaningful semantics for all 13 parameters: UUIDs, rich HTML, ID types, positive-integer constraint, ISO datetime, replace semantics, and EPIC/sprint context. This fully compensates for the bare input schema.

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 opens with 'Update a ticket's fields', a clear verb-resource pair that immediately identifies what the tool does. It is distinct from the many sibling update_* tools because it targets the ticket object itself, not ticket statuses, priorities, categories, or other support entities.

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 statement 'Only fields you provide are changed' gives clear partial-update context and signals that this tool is for modifying an existing ticket rather than creating one. It does not explicitly name alternatives or exclusion cases, but the resource and action are unambiguous enough for correct selection among siblings.

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