Skip to main content
Glama

List Student Quiz Accommodations

list_student_quiz_accommodations
Read-only

Retrieve a student's current extra time and extra attempts across all Classic Quizzes in a course. Use to audit accommodations before or after making changes.

Instructions

List the current quiz accommodation (extra time and/or extra attempts) for a specific student across all Classic Quizzes in a course. Useful for auditing before or after calling set_student_quiz_accommodation. New Quizzes (quiz_type quizzes.next) are excluded. Reads extra_time / extra_attempts from each quiz's submission records (Canvas exposes no read endpoint for quiz extensions directly) — one Canvas API call per Classic Quiz, so it may be slow for courses with many quizzes. Errors from any quiz's read propagate immediately (no per-quiz error catching). Provide user_id as the real Canvas user ID. If CANVAS_PSEUDONYMIZE_STUDENTS is enabled, call resolve_pseudonym first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesReal Canvas user ID of the student
course_idYesCanvas course ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.18.11
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. Addedv1.18.3

TDQS

A4.7/5.0
Behavior5/5

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

Goes well beyond the readOnlyHint/openWorld annotations by disclosing that there is no Canvas read endpoint, that the tool performs one read per Classic Quiz (performance implication), and that errors from any quiz's read propagate immediately. This materially changes how an agent should plan calls.

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 dense but every sentence earns its place: it covers purpose, usage context, scope limitation, performance caveat, error behavior, and input requirements. All key information is front-loaded.

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

Completeness5/5

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

Despite no output schema, the description tells the agent what data is read (extra_time / extra_attempts), the performance characteristics, the error propagation behavior, the scope restriction, and the prerequisite for pseudonymized students. It fully equips an agent to decide and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the schema already describes both parameters. The description adds important value by clarifying that user_id must be the real Canvas ID (not a pseudonym) and conditions under which resolve_pseudonym should be called first. That goes beyond the schema's basic type/description.

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 ('student quiz accommodations'), and clearly scopes to a particular student, all Classic Quizzes in a course. It explicitly distinguishes itself from New Quizzes and the write counterpart set_student_quiz_accommodation, so it is easy to tell apart from siblings.

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?

States that the tool is useful for auditing before/after calling set_student_quiz_accommodationraded, and explicitly notes it covers only Classic Quizzes, which rules out the New Quizzes sibling. It also gives a precondition when pseudonyms are enabled (resolve real user ID). It does not explicitly name the alternative sibling for New Quizzes, but the exclusion is clear.

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

Deploy Server

Other Tools