Skip to main content
Glama

get_conversations

Retrieve all replies, notes, and email threads for a Freshdesk ticket to review investigation history, analyst notes, and customer communications. Returns plain text with customer/agent sender flag.

Instructions

Get all replies, notes and email threads for a Freshdesk ticket. Returns body_text (plain text, HTML stripped), incoming=true means customer sent it, incoming=false means agent sent it. Use this to understand the full investigation history, analyst notes, and customer communications.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticket_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
ticket_idYes
conversationsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose return semantics (body_text is plain text with HTML stripped; incoming=true means customer, false means agent), which is genuinely useful. It says nothing about pagination, ordering, size limits, or permissions needed, so key operational behavior is still missing.

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?

Three sentences, front-loaded with what the tool returns, then field interpretation, then purpose. Every sentence adds information with no padding or repetition.

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?

An output schema exists, so return values need not be documented, yet the description still clarifies the two most ambiguous fields. For a one-parameter read tool the coverage is nearly complete, with only pagination/volume behavior left unaddressed.

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?

Schema description coverage is 0%, so the description is the only place ticket_id semantics could be documented, and it only implies it via 'for a Freshdesk ticket.' The single integer parameter is self-evident, but no format, source, or lookup guidance is added.

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 specific verb and resource: 'Get all replies, notes and email threads for a Freshdesk ticket.' It is clearly distinct from get_ticket (metadata) and get_ticket_summary (condensed view), but it never explicitly names or contrasts a sibling, which keeps it from a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Use this to understand the full investigation history, analyst notes, and customer communications' gives a concrete when-to-use scenario. However, it names no alternatives and states no exclusions or preconditions, so it stops short of the 5-level routing guidance.

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