Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_create_ticket_status

Create custom ticket statuses by defining name, lifecycle stage, resource type, and optional SLA pause, color, and icon to match your workflow.

Instructions

Create a new ticket status.

Args: name: Status name e.g. 'In Progress'. category: Lifecycle stage — 'TO_DO', 'IN_PROGRESS', or 'DONE'. resource: Resource type — 'SPRINT', 'TASK', or 'PROJECT'. description: Optional description. color: Hex color e.g. '#3B82F6'. icon: Icon identifier. pauses_sla: Whether this status pauses SLA timer (default: False).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNo
nameYes
colorNo
categoryYes
resourceYes
pauses_slaNo
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It says the tool creates a status but does not disclose side effects, permission requirements, whether the status is global or resource-scoped, or what happens after creation. The parameter list adds useful field semantics but not behavioral context.

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 one-sentence purpose followed by a compact Args block where every line adds value. It is front-loaded and avoids redundant prose.

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 a seven-parameter tool with no annotations and zero schema descriptions, the parameter coverage is strong, and the output schema covers return values. However, the description omits usage context such as whether a status is global or tied to a resource type, and it gives no behavioral or prerequisite information, leaving an agent with open questions before calling.

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 for all seven parameters with examples, enum-like allowed values, and explanations. However, 'pauses_sla ... default: False' conflicts with the schema's explicit null default, so the added guidance is strong but not fully consistent with the 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 first sentence, 'Create a new ticket status', names the exact action and resource. The verb 'Create' distinguishes it from sibling tools such as wetrack_get_ticket_status, wetrack_update_ticket_status, and wetrack_delete_ticket_status without requiring schema inspection.

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 gives no when-to-use guidance, does not mention alternatives, and states no prerequisites. An agent must infer from the tool name that this is for creating new statuses, and nothing clarifies when to choose this over the update or delete variants.

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