Skip to main content
Glama
jasonko
by jasonko

get_conversation

Fetch a full message thread by providing school ID and chat ID to view all messages in a specific conversation.

Instructions

Read a specific message conversation thread with all messages.

IMPORTANT: Both school_id and chat_id are required.

Args: school_id: School ID (same school_id used in list_conversations) chat_id: Conversation/chat ID (from list_conversations results)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chat_idYes
school_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.8/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 burden. It discloses that the tool reads a conversation thread with all messages, which implies a read-only operation. However, it doesn't describe return format, pagination, or any side effects. The description is accurate and adds some behavioral context (returns all messages in the thread), but lacks depth.

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?

The description is concise and front-loaded with the core purpose. The IMPORTANT note and Args section are clearly structured. It could be slightly more compact, but every sentence earns its place by clarifying required parameters and their provenance.

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?

Given the tool has an output schema (so return values are documented elsewhere), the description covers the essential context: what it reads, that both parameters are required, and where to get the parameter values. It doesn't mention error conditions or edge cases, but for a simple read operation with an output schema, this is adequate.

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 description coverage is 0%, so the description must compensate. It does: it explains that school_id is the same one used in list_conversations and chat_id comes from list_conversations results. This adds meaning beyond the bare schema types (integer) and clarifies the relationship between parameters and the sibling tool.

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 ('Read') and resource ('a specific message conversation thread with all messages'), which clearly distinguishes it from list_conversations (which lists conversations) and get_post (which reads a post). It doesn't explicitly name a sibling, but the action and resource are clear enough to differentiate.

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?

The description provides clear context: it reads a specific conversation thread, and it explicitly notes that both school_id and chat_id are required, referencing list_conversations as the source of these IDs. It doesn't explicitly state when not to use it or name alternatives, but the usage context is clear.

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