Skip to main content
Glama

get_conversation

Read-only

Retrieve a single conversation by its ID, returning customer details and the last message for inbox lookup.

Instructions

Get a single conversation by ID, including customer details and last message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesConversation ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description goes beyond them by disclosing the returned payload ('customer details and last message'), which is valuable since there is no output schema. It does not state behavior when the ID is not found, but the safety profile and content disclosure are strong.

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 sentence with no filler, front-loading the action and identifier. The payload clause adds useful detail rather than padding.

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 read-only single-resource getter with one fully documented parameter, the description covers the essentials and compensates for the absent output schema by naming what is returned. Minor gap: no note on not-found behavior.

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 100% and the single 'id' parameter is fully documented in the schema, so the baseline of 3 applies. The description's 'by ID' merely restates what the schema already provides.

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 and resource ('Get a single conversation by ID') and clarifies the payload ('customer details and last message'). The word 'single' implicitly distinguishes it from list_conversations, though that sibling is never named.

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?

'by ID' implies the tool needs a known identifier, but there is no explicit when-to-use guidance and no mention of list_conversations or list_messages as alternatives for the discovery path. The agent must infer the selection criteria.

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