Skip to main content
Glama

edubase_get_exam_round

Read-onlyIdempotent

Get the current exam round details: index, start time, result availability, and frozen status. Determine whether a new round must be started.

Instructions

Get the current round of an exam: its index, start time, whether it already has results and whether it is frozen. Start a new round with edubase_post_exam_round.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
examYesexam identification string

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
examYes
roundYes
frozenYes
resultsYes
startedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv2.0.0
    • removedOutput schema / properties / exam / description
      Removed value: -"exam identification string"
    • removedOutput schema / properties / frozen / description
      Removed value: -"the current round is frozen, no new round can be started"
    • removedOutput schema / properties / results / description
      Removed value: -"the current round already has results"
    • removedOutput schema / properties / round / description
      Removed value: -"index of the current round"
    • removedOutput schema / properties / started / description
      Removed value: -"date and time the current round was started at"
  2. Addedv1.2.15

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering safety. The description adds value by specifying the exact fields returned, which enriches the behavioral context without contradicting annotations. No side effects are mentioned but none are expected for a read operation.

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 concise sentences: the first states purpose and returns, the second points to the complementary sibling. No filler words, and the core purpose is front-loaded.

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?

With an output schema available, the return structure is documented externally. The description covers the purpose, the key data points, and the related mutation tool. It is complete for a simple getter, though it could briefly mention that the exam parameter refers to an existing exam ID.

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?

The schema provides 100% coverage for the single 'exam' parameter with a description of 'exam identification string'. The tool description adds no further details about the parameter's format or how to obtain it, so it relies entirely on the schema. Baseline 3 is 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 explicitly states the action ('Get the current round of an exam') and enumerates the exact data returned (index, start time, results presence, frozen state). It also names the sibling tool for creating a new round, clearly distinguishing its purpose from edubase_post_exam_round.

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 implies when to use this tool (when you need the current round's status) and explicitly directs to edubase_post_exam_round for starting a new round. However, it does not contrast with other read-only exam tools like edubase_get_exam or edubase_get_exam_status, so some context on alternatives is missing.

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