Skip to main content
Glama

Get Conversation

mistral_get_conversation
Read-onlyIdempotent

Retrieve details for a Mistral conversation by its ID to access prior chat context and metadata.

Instructions

Get conversation details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
conversation_idYesConversation ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.5/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint=false, and destructiveHint=false, so the safety profile is covered externally. The description adds nothing beyond that — no note on what the returned details include, whether the conversation may be missing, or error behavior. With annotations carrying the load, the description still contributes almost no extra context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

It is a single short sentence with no waste, but its length reflects under-specification rather than disciplined conciseness. There is nothing to front-load because almost no information is present.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter read tool with no output schema, some ambiguity remains unresolved: the relationship to mistral_get_conversation_history is unexplained, and the description does not hint at what 'details' contains. A reader cannot confidently choose this over the neighboring history/list tools.

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% for the single conversation_id parameter, so the schema already documents the input fully. The description adds no format, source, or constraint detail beyond the schema, which is the baseline 3 case.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The phrase 'Get conversation details' names a verb and resource, so the basic purpose is inferable. However, it does not distinguish this tool from siblings like mistral_get_conversation_history or mistral_list_conversations, leaving the boundary between 'details', 'history', and 'list' ambiguous.

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?

There is no guidance on when to use this tool versus mistral_get_conversation_history or mistral_list_conversations, nor any stated prerequisites. The agent must guess from the name alone.

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