Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_delete_ticket_status

Soft-delete a ticket status by ID to set it inactive while retaining data. The operation fails if active tickets are still using the status.

Instructions

Soft-delete a ticket status (sets inactive; data is retained). Will fail if active tickets are still using this status.

Args: status_id: The status ID to deactivate.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
status_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/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 disclosure burden. It transparently states that the delete is a soft-delete, data is retained, and the operation fails under an active-ticket condition. This goes beyond the tool name, though it does not mention auth requirements, reversibility, or response behavior.

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 short, front-loaded with the essential action, and uses a clean Args section. Every sentence adds value: the soft-delete behavior, the retention guarantee, the failure condition, and the parameter meaning.

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 tool is simple with one parameter and a single clear action. The description covers the core behavior, side effects, and failure condition, and an output schema is present. It does not discuss authentication or follow-up actions, but the essential context for correct invocation is present.

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 schema provides only the parameter name 'status_id' with no description, so the description's 'The status ID to deactivate' adds a minimal but useful clarification. It does not explain how to obtain the ID, expected format, or relationship to related ticket-status tools, but it is adequate for a single simple parameter.

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 identifies a specific verb ('Soft-delete') and resource ('ticket status'), and clarifies the operation as setting inactive while retaining data. It is clear and unambiguous, though it does not explicitly compare against sibling status tools such as update_ticket_status or list_ticket_statuses.

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 context by noting that soft-delete sets inactive and that the operation will fail if active tickets still use the status. However, it does not explicitly state when to prefer this tool over alternatives or describe preconditions like checking that no active tickets reference the status.

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