Skip to main content
Glama

Get Exam Paper by ID

paper_get
Read-onlyIdempotent

Retrieve a specific exam paper by its ID with question details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
exam_paper_idYesThe ID of the exam paper to retrieve

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
tierYes
yearYes
titleYes
subjectYes
sectionsYes
created_atYesISO-8601 creation timestamp.
created_byYes
exam_boardYes
total_marksYes
paper_numberYes
duration_minutesYes

Schema Changelog

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

  1. Changed5 schema fields changed
    • removedOutput schema / properties / created_by / additionalProperties
      Removed value: -false
    • addedOutput schema / properties / created_by / anyOf
      Added value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "email": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      },
      +      "id": {
      +        "type": "string"
      +      },
      +      "name": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ]
      +      }
      +    },
      +    "required": [
      +      "id",
      +      "name",
      +      "email"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / properties / created_by / properties
      Removed value: -{
      -  "email": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ]
      -  },
      -  "id": {
      -    "type": "string"
      -  },
      -  "name": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ]
      -  }
      -}
    • removedOutput schema / properties / created_by / required
      Removed value: -[
      -  "id",
      -  "name",
      -  "email"
      -]
    • removedOutput schema / properties / created_by / type
      Removed value: -"object"
  2. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already carry the key behavioral safety profile: readOnlyHint=true and idempotentHint=true, so an agent knows this has no lasting side effects. The description adds the 'with question details' scoping fact, which is useful. It does not comment on permissions, errors, or response shape beyond that, so the description adds only a modest amount beyond 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?

The description is a single focused, front-loaded sentence. It names the action, the object, the identifier criterion, and the expected content detail with no filler or redundancy.

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?

This is a simple read-only tool with one parameter and an output schema, so the description does not need to explain return values or data structures. The core intent of retrieving a specific exam paper with question details is fully captured, making the definition complete for an agent to invoke it correctly.

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%: the only parameter, exam_paper_id, is already fully described in the schema with 'The ID of the exam paper to retrieve.' The description does not add any extra parameter information beyond echoing the ID-focused purpose. Thus, it earns the baseline score for schema-covered parameters.

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 a specific verb ('Retrieve'), the resource ('exam paper'), and the selection criterion ('by its ID'). It also adds 'with question details', which distinguishes the returned content from what paper_list would provide. An agent can unambiguously tell this from sibling tools like paper_create or paper_list.

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 implicitly communicates the correct usage: use this tool when you already know the exam paper ID and need the full paper with questions. It does not explicitly name alternatives or exclusions, but the context of retrieving a specific paper by ID is clear enough given sibling tools like paper_list suggest searching/listing.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

The tools map well to distinct resources and workflow stages, and the async flows are clearly explained. The main overlap risk is paper_create/paper_confirm and markResult_get/submission_get, where names point at similar actions but the descriptions make the boundaries usable.

Naming Consistency4/5

Most names follow the same resource_action snake_case pattern, e.g. paper_get, submission_mark, markScheme_update. markResult_get breaks the pattern slightly by mixing camelCase into an otherwise snake_case set, but the naming stays readable and predictable overall.

Tool Count5/5

Ten tools is a well-scoped size for this domain: paper creation, confirmation, retrieval, question/mark-scheme correction, and submission grading are covered without excess granularity or obvious filler.

Completeness4/5

The main end-to-end workflow—create extraction job, confirm paper, mark submission, poll results—is complete and coherent. Minor gaps exist, such as no paper deletion, no submission listing, and no direct way to fetch a mark scheme separately, but they are not blocking for the core grading loop.

Resources