Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_update_ticket_category

Update an existing ticket category's name, description, color, icon, or active state to keep WeTrack project data organized.

Instructions

Update a ticket category.

Args: category_id: The category ID. name: Category name (required). description: Optional description. color: Hex color. icon: Icon identifier. is_active: Active state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNo
nameYes
colorNo
is_activeNo
category_idYes
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are present, so the description must carry the full burden of behavioral disclosure. It only restates parameter names and minimal labels, and does not explain whether this is a partial update, whether omitted optional fields are left unchanged or reset, what side effects may occur, or what authentication or permissions are required. 'Update' signals mutation, but no meaningful behavior beyond that is disclosed.

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

Conciseness4/5

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

The description is short and front-loaded with the purpose, followed by a clean per-parameter list. There is no filler or redundancy relative to the information it conveys, though the argument list largely mirrors the input schema. It is appropriately sized for its content.

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 mutation tool with no annotations and six parameters, the description is minimally viable but incomplete. It covers parameter names and requiredness but omits behavioral context, update semantics, validation rules, and any warning about consequences. The presence of an output schema reduces the need to describe return values, but the description still lacks enough context for an agent to confidently use this tool correctly in all cases.

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 input schema has 0% description coverage, so the description must compensate. It does provide brief semantics for every parameter: category_id is 'The category ID', name is required, description is optional, color is a hex color, icon is an identifier, and is_active is an active state. However, several labels are close to tautological or under-specified, and no constraints, allowed values, or formats beyond 'Hex color' are given.

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 states a specific verb and resource: 'Update a ticket category.' This clearly identifies the tool's operation and differentiates it from siblings like wetrack_create_ticket_category and wetrack_update_ticket_status by naming the exact entity being updated. It lacks a richer statement of scope, but the core purpose is unambiguous.

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 about when to use this tool versus alternatives such as wetrack_create_ticket_category, wetrack_get_ticket_category, or wetrack_update_ticket. There is no mention of prerequisites, intended call context, or exclusions. Usage must be inferred entirely from the tool name and the generic 'Update' verb.

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