Skip to main content
Glama

list_teachers

Retrieve the teachers assigned to a course by providing its unique course ID. Useful for viewing course rosters and managing instructor access.

Instructions

List teachers of a course.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
courseIdYesThe unique identifier of the course.
pageSizeNoMax teachers to return.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states that the operation is a listing, but does not describe return format, pagination behavior, ordering, or error handling. This is a significant gap for a tool with no annotation safety hints.

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

Conciseness5/5

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

The description is a single sentence with no fluff. It front-loads the verb and resource, and every word contributes meaning. It is appropriately sized for the tool's simplicity.

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

Completeness3/5

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

For a simple list operation, the description is adequate but has gaps. It does not specify the return structure, pagination semantics, or any edge-case behavior, which is especially relevant given the absence of both annotations and an output schema.

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 the parameters (courseId and pageSize) are already documented. The tool description adds no extra parameter context, which is acceptable given the high schema coverage, but it does not compensate for any implicit assumptions.

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

Purpose5/5

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

The description uses a specific verb ('List') and resource ('teachers of a course'), clearly identifying the operation. It naturally distinguishes itself from siblings like list_students and list_courses, so an agent can understand what this tool does without confusion.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied: call this tool when you need teachers for a specific course. However, there is no explicit guidance on when to prefer this tool over alternatives or any exclusions, so the usage context is only implicit.

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