Skip to main content
Glama

list_students

List students in a Google Classroom course by ID. Use pageSize to cap results.

Instructions

List students enrolled in a course.

Input Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full behavioral burden. It only states the action, with no mention of pagination (despite a pageSize parameter), result format, ordering, or any side effects. This leaves the agent without key details about how the tool behaves.

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, efficient sentence with no redundant words. It is appropriately minimal and front-loaded with the core purpose.

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 list tool with no output schema and no annotations, the description is thin. It omits pagination behavior (pageSize usage, defaults), result structure, and any preconditions (e.g., course existence). An agent would need to guess or inspect the schema for these details, which the schema does not fully clarify either.

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 both parameters are already documented in the schema. The description adds no extra meaning beyond what the schema provides, making the baseline 3 appropriate.

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 clearly states the verb (list) and resource (students enrolled in a course). It is unambiguous and distinct from sibling tools like list_teachers or list_coursework, which target different resources.

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 description implies usage when you need students of a course, but it does not explicitly mention alternatives or when not to use it. With several sibling list tools, a note distinguishing this from list_teachers would improve guidance, but the basic context is inferable.

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