Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_get_ticket_status

Fetch the status of a single ticket using its status ID. Get the exact current state to resolve ticket tracking queries.

Instructions

Get a single ticket status by ID.

Args: status_id: The status ID.

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.6/5.0
Behavior3/5

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

With no annotations, the description carries the transparency burden. 'Get' clearly signals a read-only operation with no destructive side effects, but it does not disclose not-found behavior, error cases, or access requirements. The basic behavior is transparent, but no deeper behavioral context is provided.

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 core purpose. The args section is somewhat redundant with the schema but not bloated. It earns its place by being immediately scannable.

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?

For a simple single-get operation with one required parameter and an output schema present, the description is nearly complete. It lacks only explicit sibling differentiation and error behavior, but the simplicity of the operation keeps the gap small.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/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 only repeats 'The status ID', which adds no meaning beyond the parameter name 'status_id' and its string type. No format, source, or relationship guidance is given.

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 states a specific verb ('Get'), resource ('ticket status'), and lookup mode ('by ID'). It clearly distinguishes from sibling wetrack_list_ticket_statuses (plural list) and wetrack_get_ticket (different resource, a ticket rather than a status).

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?

Usage is only implied: 'by ID' suggests direct lookup of one specific status. The description does not explicitly mention when to prefer it over wetrack_list_ticket_statuses or any other alternative, but the singular framing offers reasonable guidance.

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