Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_create_ticket_category

Create a ticket category in WeTrack by specifying a name and optional description, color, and icon to organize tickets.

Instructions

Create a new ticket category.

Args: name: Category name e.g. 'Hardware'. description: Optional description. color: Hex color. icon: Icon identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNo
nameYes
colorNo
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/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 of disclosing behavior. It only says 'Create a new ticket category,' which implies an additive operation, but it does not mention uniqueness constraints, error conditions, required permissions, idempotency, or side effects. This is too minimal to be behaviorally transparent.

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 line, followed by a compact argument list. No filler content appears, though slightly more detail on parameter constraints could improve it without becoming wordy.

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?

The output schema exists, so return values are covered. But the description leaves missing context for what 'icon' actually accepts, whether name uniqueness is enforced, and any permission or visibility expectations. This is adequate for a basic create operation but not fully complete.

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 Args block adds some meaning beyond the minimal schema: it clarifies 'name' with an example, labels description as optional, and specifies that color is a hex value. However, it does not give allowed icon identifiers or a full color format, and it does not label color/icon as optional even though the schema indicates they have null defaults. With 0% schema description coverage, this only partially compensates.

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 clearly states the function as 'Create a new ticket category.' This is a specific verb and resource, distinguishing it from sibling tools like wetrack_update_ticket_category, wetrack_get_ticket_category, or wetrack_create_ticket_status.

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?

There is no guidance on when to use this tool versus alternatives. It does not explain when a new category should be created, whether it depends on existing projects or organizations, or how it relates to ticket types, priorities, or statuses.

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