Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_create_ticket_priority

Create a new ticket priority with a name, severity bucket, and resource type. The priority code is auto-derived from the name, making setup direct.

Instructions

Create a new ticket priority. The code is auto-derived from the name.

Args: name: Priority name e.g. 'Blocker' or 'Very High'. priority_type: Severity bucket — 'LOW', 'MEDIUM', 'HIGH', or 'CRITICAL'. resource: Resource type — 'SPRINT', 'TASK', or 'PROJECT'. description: Optional description. color: Hex color. icon: Icon identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNo
nameYes
colorNo
resourceYes
descriptionNo
priority_typeYes

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 full responsibility for behavioral disclosure. It does reveal one meaningful behavior: 'The code is auto-derived from the name.' However, it does not mention side effects, required permissions, duplicate handling, or what happens on success. For a creation operation with zero annotation coverage, this leaves important gaps.

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 and well-structured: a one-line purpose statement followed by a clean Args list. There is no fluff, each parameter line adds distinct value, and the key behavior is front-loaded.

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, required fields are clear from the schema, and the output schema can inform the return value. The missing pieces are usage guidance and behavioral caveats such as uniqueness or side effects. For a straightforward create tool, this is largely sufficient but not exhaustive.

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%, but the description fully compensates by explaining all six parameters with meaningful semantics. It provides examples for name ('Blocker', 'Very High'), enumerates allowed values for priority_type and resource, and clarifies description, color, and icon. This is exactly the information an agent needs beyond the raw schema.

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?

States a specific verb and resource: 'Create a new ticket priority.' It also adds the useful detail that the code is auto-derived from the name, which makes the scope concrete. It does not explicitly differentiate from sibling CRUD tools for ticket priorities, but the action and object are 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?

No guidance on when to use this tool versus alternatives like wetrack_update_ticket_priority or wetrack_list_ticket_priorities. There are no exclusions, prerequisites, or context signals that help an agent choose among the priority CRUD siblings. Usage is only implied by the create verb, which is not enough.

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