Skip to main content
Glama
EquateItAu

ClassQuill MCP server

by EquateItAu

list_conversation_messages

Read-onlyIdempotent

Retrieve messages in a ClassQuill tutoring conversation by conversation ID, with pagination and timestamp filters.

Instructions

List Conversation Messages

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoRecords per page (default 50, max 100)
sinceNocreated_at >= this ISO timestamp
offsetNoPagination offset
conversation_idYesConversation UUID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
metaYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.2/5.0
Behavior2/5

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

The annotations already cover read-only, idempotent, open-world, non-destructive behavior, but the description reveals nothing beyond that. It does not mention ordering, pagination, time filtering behavior, or response characteristics.

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

Conciseness2/5

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

The description is one short sentence, so it is not verbose, but it does not earn its place because it merely repeats the tool name. This is under-specification rather than useful conciseness.

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?

There is no output schema, so the description should communicate return shape or ordering behavior, but it does not. With four parameters and many sibling list tools, the definition leaves too much for the agent to infer.

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%, so all four parameters already have meaningful documentation including limit, offset, since, and conversation_id. The description contributes no parameter-level meaning, so the baseline score of 3 is appropriate.

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

Purpose2/5

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

The description is a verbatim restatement of the tool name and title (List Conversation Messages), so it is tautological and adds no new semantic content. It states a list operation but does not scope the resource or distinguish it from sibling list tools.

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 about when to use this tool instead of list_conversations, list_org_inbox, or other siblings. An agent must infer the intended use case entirely from the tool name and input schema.

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