Skip to main content
Glama

students

Retrieves every enrolled user in a course with role, email, and last access, so you can review participants and prepare for grade submissions.

Instructions

Everyone enrolled in a course, with their role, email and last access. The userid returned here is what grade_submission expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
courseidYesCourse id from my_courses

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the transparency burden. It discloses the output contents and the semantic of userid, but does not mention output format, pagination, permission requirements, or whether all enrollment roles are included. This is useful but incomplete.

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?

Two tight sentences with no filler. The output-relevant facts come first, and the downstream-consumer note is a single purposeful clause.

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

Completeness4/5

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

For a one-parameter list tool with no output schema, naming the returned fields and connecting them to grade_submission gives an agent enough to call it correctly. Minor gaps such as response structure or pagination exist but are not critical for this simple tool.

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 coverage is 100% and courseid is already documented as 'Course id from my_courses'. The description adds no additional parameter semantics beyond the schema, so the baseline 3 applies.

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

Purpose4/5

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

The description clearly identifies the resource (students enrolled in a course) and the returned information (role, email, last access). It lacks an explicit action verb such as 'list' but is specific enough to distinguish the tool from submissions/gradebook siblings and ties its output to grade_submission.

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

Usage Guidelines4/5

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

It provides clear context: the returned userid is what grade_submission expects, so an agent can infer this is the step to call before grading. It does not name alternatives or state when not to use it, so it stops short of a 5.

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