Skip to main content
Glama
EquateItAu

ClassQuill MCP server

by EquateItAu

list_tutor_reviews

Read-onlyIdempotent

Retrieve tutor reviews with pagination and optional anonymization. Use tutor ID to get feedback records, control result count, and hide reviewer names.

Instructions

List Tutor Reviews

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoRecords per page (default 20, max 100)
offsetNoPagination offset
tutor_idYesTutor UUID
anonymizeNoReturn reviewer initials instead of full names

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?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. However, the description itself adds no behavioral context such as pagination behavior, default ordering, whether anonymization affects output, or any other runtime characteristics beyond the schema.

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 extremely short, but it is also redundant with the tool name and title. It is under-specified rather than efficiently informative; the single phrase does not earn its place because it provides no new information.

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?

Given the tool has four parameters and sits among dozens of siblings, the description is too minimal to help an agent understand what tutor reviews are, when to call this tool, or how it relates to similar tools. The output schema exists but does not compensate for the lack of context around the tool's purpose and typical use.

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 each parameter has a meaningful description in the input schema. The description adds no parameter-level meaning, but the schema carries the full burden, so the baseline 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 'List Tutor Reviews', which exactly restates the tool name and annotation title. It communicates a verb and resource, but adds no detail beyond the name, so it reads as a tautology rather than a real explanation of what the tool does.

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 versus alternatives. The sibling list includes many similar list_* tools such as list_session_feedback, list_tutors, and list_students, but the description does not distinguish tutor reviews from those or mention any use cases.

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