Skip to main content
Glama

edubase_get_quizes

Read-onlyIdempotent

List Quiz sets you own or manage on EduBase, with optional search and pagination to filter and navigate results.

Instructions

List owned and managed Quiz sets. Quiz sets are named collections of questions that sit at the middle level of the EduBase Quiz hierarchy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNopage number (default: 1), not used in search mode!
limitNolimit number of results (default: 16)
searchNosearch string to filter results

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
quizesYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed3 schema fields changedv1.2.15
    • removedOutput schema / properties / quizes / items / properties / name
      Removed value: -{
      -  "description": "title of the Quiz set",
      -  "type": "string"
      -}
    • addedOutput schema / properties / quizes / items / properties / title
      Added value: +{
      +  "description": "title of the Quiz set",
      +  "type": "string"
      +}
    • changedOutput schema / properties / quizes / items / required
      Previous value: -[
      -  "quiz",
      -  "name"
      -]New value: +[
      +  "quiz",
      +  "title"
      +]
  2. Changed9 schema fields changedv1.1.2
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • addedInput schema / properties / limit / maximum
      Added value: +9007199254740991
    • addedInput schema / properties / limit / minimum
      Added value: +-9007199254740991
    • changedInput schema / properties / limit / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / page / maximum
      Added value: +9007199254740991
    • addedInput schema / properties / page / minimum
      Added value: +-9007199254740991
    • changedInput schema / properties / page / type
      Previous value: -"number"New value: +"integer"
    • removedInput schema / required
      Removed value: -[]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "quizes": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "id": {
      +            "anyOf": [
      +              {
      +                "type": "string"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ],
      +            "description": "external unique Quiz identifier (if set for the Quiz)"
      +          },
      +          "name": {
      +            "description": "title of the Quiz set",
      +            "type": "string"
      +          },
      +          "quiz": {
      +            "description": "Quiz identification string",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "quiz",
      +          "name"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "quizes"
      +  ],
      +  "type": "object"
      +}
  3. First observedv1.0.22

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the 'owned and managed' scope filter, which is helpful context beyond the annotations. It doesn't describe return format or pagination behavior, but the output schema is present and annotations sufficiently cover the behavioral contract, so the extra context is adequately handled.

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 consists of two short, front-loaded sentences. The first states the primary action and scope, the second defines the entity. Every sentence adds value with no filler, repetition, or unnecessary detail. It is efficient and well-structured.

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?

Given that the tool has an output schema (though not shown), a fully documented parameter schema, and comprehensive annotations (read-only, open-world, idempotent, non-destructive), the description is sufficient for calling the tool correctly. It clarifies the resource type and hierarchical position. The only minor gap is lack of explicit mention of pagination, but this is covered by the parameters and output schema, so it's not a significant omission.

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 JSON schema provides 100% documentation coverage for all three parameters (page, limit, search) with clear descriptions. The tool description adds no additional parameter semantics beyond what the schema already states. Therefore, the default score of 3 applies per the rubric.

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 states a specific verb ('List') and resource ('owned and managed Quiz sets'), making the tool's purpose clear. It also explains what Quiz sets are (named collections of questions, middle level of hierarchy), which adds conceptual context. It doesn't explicitly differentiate from sibling tools like edubase_get_quiz or edubase_get_questions, but the plural 'Quiz sets' and the ownership scoping distinguish it adequately for an agent.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus other siblings. It does not mention alternatives (e.g., get_quiz for a single quiz, get_quiz_settings for settings) or conditions under which this listing is appropriate. The only hint is 'owned and managed', but that's more of a scope definition than usage guidance. Given many sibling tools in the list, explicit routing is missing.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/EduBase/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server