Skip to main content
Glama
Mohemed-Amine-Chalhy

ticket-triage-mcp

lookup_customer_account

Verify customer account details by exact lookup across email, ticket, or account IDs; use mismatches as evidence for escalation.

Instructions

Read-only exact lookup in the synthetic customer account system. Use returned misses or mismatches as escalation evidence.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNo
ticket_idNo
account_idNo
account_numberNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior3/5

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

With no annotations, the description must carry the full burden. It discloses the read-only nature and that it returns misses or mismatches, which is useful. However, it does not explain how multiple parameters combine, whether authentication is needed, or any other behavioral details beyond these basics.

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 two concise sentences with the key fact 'Read-only exact lookup' front-loaded. Every clause earns its place, and there is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 optional parameters, zero required, and no parameter documentation, the description is inadequate. It does not explain how to construct a valid lookup, what happens if multiple params are provided, or what escalation evidence looks like. The output schema exists but the description offers no context on call semantics.

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

Parameters1/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 for the lack of parameter documentation. It does not mention email, ticket_id, account_id, or account_number at all, nor does it explain whether at least one is required, how they interplay, or which is preferred. The agent has no guidance on parameter usage.

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 clear verb and resource ('Read-only exact lookup in the synthetic customer account system'), which distinguishes it from the sibling tool by resource. However, it doesn't explicitly name the sibling, so differentiation is implied rather than explicit.

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?

The description gives no explicit guidance on when to use this tool versus the sibling lookup_billing_or_incident. The only usage-related hint is 'Use returned misses or mismatches as escalation evidence,' which concerns result handling, not tool selection. It lacks any exclusions or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.