Skip to main content
Glama

edubase_get_quiz_settings

Read-onlyIdempotent

Retrieve a quiz's current settings, including question shuffling, time limits, and grading options, to review or prepare updates.

Instructions

Get the settings of a Quiz set: question shuffling, time limits and grading. Change them with edubase_post_quiz_settings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
quizYesQuiz identification string

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
quizYes
gradingYes
shuffleYes
roundtimeYes
timelimitYes
grading_thresholdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv2.0.0
    • removedOutput schema / properties / grading / description
      Removed value: -"grading of the Quiz set, the code of the grading preset in use, \"custom\" for a manually configured grading, or \"none\" when grading is disabled"
    • removedOutput schema / properties / grading_threshold / description
      Removed value: -"threshold of the grading in percentage (only present if a threshold is configured for the Quiz set)"
    • removedOutput schema / properties / quiz / description
      Removed value: -"Quiz identification string"
    • removedOutput schema / properties / roundtime / description
      Removed value: -"time limit of a single question in seconds, turn based Quiz sets only, null if there is no time limit"
    • removedOutput schema / properties / shuffle / description
      Removed value: -"questions are shuffled for every play"
    • removedOutput schema / properties / timelimit / description
      Removed value: -"time limit of the whole test in seconds, null if there is no time limit"
  2. Addedv1.2.15

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds value by enumerating which settings are retrievable, giving the agent a concrete sense of the tool's scope without contradicting the annotations.

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 sentences with no filler: the first states the purpose and the specific setting categories, the second names the corresponding mutation tool. Every word earns its place and the core 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?

Given the tool's simplicity (one parameter, output schema present, annotations covering idempotency and read-only nature), the description is fully sufficient. Nothing an agent needs to call it correctly is missing.

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% for the single parameter 'quiz', described as 'Quiz identification string'. The tool description does not add any additional meaning about the parameter beyond that, so it meets the baseline but does not exceed it.

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 action (get settings) and the resource (Quiz set), and lists the specific setting types covered: question shuffling, time limits, and grading. It also distinguishes itself from the sibling mutation tool by naming edubase_post_quiz_settings, so an agent can immediately tell this is the read-only counterpart.

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?

The description explicitly points to the alternative for changing settings, which implies when to use this tool versus the write version. However, it does not explicitly state 'use this when you need to view settings' or list exclusions, but the named sibling provides sufficient routing context.

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