Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_add_ticket_comment

Add a comment to a ticket by ID to document progress, share updates, or record relevant details.

Instructions

Add a comment to a ticket.

Args: ticket_id: The ticket UUID. comment: Comment text e.g. 'Investigating the issue now.'

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
commentYes
ticket_idYes

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 provided, the description carries the full burden of disclosing behavioral traits. It only says 'Add a comment,' which implies mutation, but it does not mention side effects, required permissions, idempotency, or whether the comment is appended to the ticket's history.

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 minimal and front-loaded with the core action, followed by a compact Args list. Every sentence contributes useful information, with no filler or repetition.

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 simple two-parameter tool with an output schema, the description covers the essential invocation details. However, it is missing context about when this tool should be selected over related ticket tools and what behavioral effects (e.g., notification, visibility, editability) the comment creation triggers.

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%, so the description must compensate. It does add meaningful detail: ticket_id is identified as 'The ticket UUID' and comment is exemplified with realistic text, helping the agent understand expected value formats beyond the bare schema property names.

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 action and resource: 'Add a comment to a ticket.' This is clear and distinct from sibling tools like wetrack_get_ticket_comments and wetrack_add_ticket_attachment, though it does not explicitly contrast itself with those alternatives.

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 such as updating a ticket or adding an attachment. The intended use is implied by the tool name and first line, but no prerequisites, exclusions, or alternative routing are given.

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