Skip to main content
Glama

get_ticket

Retrieve a Freshdesk support ticket by numeric ID to access full details like status, priority, and custom fields.

Instructions

Retrieve a single Freshdesk support ticket by its numeric ID. Returns full details including id, subject, status, type, priority, due_by, is_escalated, created_at, tags and custom_fields (cf_impact, cf_urgency, cf_category, cf_subcategory, cf_domain).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticket_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
tagsYes
typeYes
due_byYes
statusYes
subjectYes
group_idNo
priorityYes
fr_due_byYes
company_idNo
created_atYes
group_nameNo
status_nameNo
is_escalatedYes
responder_idYes
custom_fieldsYes
description_textYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden; it discloses which fields are returned (including custom_fields like cf_impact) but says nothing about permissions, rate limits, or behavior when the ID does not exist.

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?

Two tight sentences, front-loaded with the core purpose followed by return contents. No wasted words.

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-lookup tool with one required parameter and an existing output schema, the description covers purpose and returns adequately. The only gap is that the return field listing duplicates the output schema and it omits not-found behavior.

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 coverage is 0% and the single parameter has no schema description, but the description compensates by identifying ticket_id as the ticket's numeric ID, clarifying format and meaning. Minor redundancy with the integer type but genuinely useful given the empty schema description.

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?

States a specific verb (Retrieve) and resource (a single Freshdesk support ticket) with a clear scope qualifier ('single', 'by its numeric ID'). The word 'single' implicitly contrasts with the list/search siblings such as list_tickets and search_tickets.

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 you use this when you already have a ticket ID versus listing or searching, but it never explicitly states when to prefer it over list_tickets, search_tickets, or get_ticket_summary. Usage is inferable but not spelled out.

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