Skip to main content
Glama

read_ticket

Read-onlyIdempotent

Retrieve the full state of a project ticket by its ID for AI coding assistants. Fetches ticket data to maintain persistent context across sessions.

Instructions

Read full ticket state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint and destructiveHint=false, so the safety profile is fully covered elsewhere. The one added signal is 'full ... state', implying a complete rather than partial read, but there is no mention of auth requirements, error behavior on unknown IDs, or pagination.

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?

A single front-loaded sentence with zero filler. It is efficient, though the brevity comes at the cost of the missing usage and parameter detail noted elsewhere rather than through disciplined pruning.

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?

Because an output schema exists, the description needn't document return values, and the annotations cover the safety profile. Still, for a tool with 39 siblings it omits the routing information that would let an agent distinguish it from list_tickets or read_chain.

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 reported as 0%, so the description needs to carry parameter meaning and it does not — it never mentions ticket_id, its format, or the TICKET-002 convention. It adds nothing beyond the schema's own single field.

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?

States a specific verb (Read) and resource (ticket) plus the scope qualifier 'full ... state', which signals a complete single-ticket fetch as opposed to a summary. It never names or distinguishes itself from close-by siblings like read_chain or list_tickets, so an agent must infer the ticket-vs-chain boundary.

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 when-to-use guidance and no exclusions. It does not say to use read_ticket rather than list_tickets or search_tickets when you have a known ticket_id, leaving the agent to infer the selection rule.

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