Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_create_work_item

Create EPIC, STORY, TASK, or BUG work items in WeTrack projects with title, summary, priority, dates, assignees, and story points. Set parent, sprint, and rich-text description to capture complete issue details.

Instructions

Create a new work item — EPIC, STORY, TASK, or BUG.

Args: ticket_type: 'EPIC', 'STORY', 'TASK', or 'BUG'. title: Work item title (Epic Name / Story Name / Task Name / Bug Title). summary: Short summary of the work item. project_id: UUID of the project this belongs to. priority_id: Integer ID of the priority (get from wetrack_list_ticket_priorities). status_id: Status ID (defaults to 'To Do' if omitted). description: Optional rich text description (HTML supported). Required for BUG. assignees: List of user UUIDs to assign. First becomes primary assignee. start_date: ISO datetime string e.g. '2026-09-01T00:00:00Z'. end_date: ISO datetime string. Must be after start_date. tags: List of string tags. sprint_id: UUID of the sprint to assign this to (optional). story_points: Integer story points. Required for STORY, optional for TASK/BUG. bug_type: Bug category string. Required for BUG type only. parent_id: Integer ID of parent EPIC (for STORY/TASK/BUG only).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNo
titleYes
summaryYes
bug_typeNo
end_dateNo
assigneesNo
parent_idNo
sprint_idNo
status_idNo
project_idYes
start_dateNo
descriptionNo
priority_idYes
ticket_typeYes
story_pointsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden, and it does a solid job: it discloses that description is required for BUG, story_points required for STORY, end_date must be after start_date, HTML is supported in description, and the first assignee becomes primary. It does not cover permissions or idempotency, but the disclosed behaviors are meaningful and not present in the schema.

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 front-loads the purpose and then uses a tight parameter list where every line adds needed information. For a 15-parameter tool with conditional requirements, the length is justified and there is no filler.

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 definition is largely complete for a complex create tool: it covers required fields, type-specific rules, defaults, date ordering, tags, assignees, sprint, and parent linkage. It could also tell the agent where to obtain status_id or project_id, but it already names one lookup source and the output schema exists, so the gap is minor.

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%, so the description must fully compensate. It explains every parameter with practical semantics: enum-like ticket_type values, where to get priority_id, defaults for status_id, conditional requirements, date ordering, and parent relationships. This is significantly more helpful than 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 a specific verb and resource: 'Create a new work item — EPIC, STORY, TASK, or BUG.' It clearly distinguishes this from sibling create tools like wetrack_create_support_ticket by naming the exact work-item types it handles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: use this when you need to create a new work item. It provides type-specific requirements and defaults, but it never explicitly states when not to use it or names alternatives like wetrack_update_ticket for modifying existing items.

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