Skip to main content
Glama
EquateItAu

ClassQuill MCP server

by EquateItAu

list_locations

Read-onlyIdempotent

Retrieve paginated business locations from ClassQuill, filterable by owner type, tutor, or student, to view tutoring-related addresses through a read-only proxy.

Instructions

List Locations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoRecords per page (default 20, max 100)
offsetNoPagination offset
tutor_idNoFilter by owning tutor UUID
owner_typeNoFilter by owner type: org, tutor, student
student_idNoFilter by owning student 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 description contributes no behavioral information beyond what the name implies. Annotations already declare readOnlyHint, idempotentHint, openWorldHint, and destructiveHint=false; the description adds no pagination, scoping, or side-effect context, so it adds no transparency value beyond the structured metadata.

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?

Two words are maximally short, but this is under-specification rather than effective conciseness. The phrase duplicates the title and uses its space on no useful distinctions, while the underlying tool has meaningful filters and pagination worth mentioning.

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?

With five optional parameters and a large sibling list, the two-word description is inadequate for an aent to understand when to choose this tool and what behavior to expect. The schema and annotations cover some technical details, but purpose, scope, and usage routing remain unexplained.

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?

The input schema fully documents all five optional parameters with descriptions, so the description does not need to repeat them. However, the description also adds no extra semantic context about filtering or pagination behavior, leaving the schema to carry the full burden.

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 'List Locations' merely restates the tool name/title and adds no explanatory scope. It identifies the action and resource, but does not differentiate this list operation from get_location or the many other list_* siblings in the toolset.

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 such as get_location or other list endpoints. The sibling list implies a broader category, but the description leaves the agent to guess the appropriate use case.

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