Skip to main content
Glama

Submit quiz answers for grading

submit_quiz_answers
Idempotent

Grade a quiz attempt server-side. Returns per-question verdicts with explanations and the overall score. Call once the user has answered (fully or partially).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
answersYesMap of question id → chosen option letter, e.g. {"<qid>": "B"}
quiz_idYesquiz_id from start_practice_quiz

TDQS

A4.3/5.0
Behavior4/5

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

With idempotentHint=true and destructiveHint=false provided by annotations, the description does not need to restate them. It adds value by disclosing server-side grading and the output format. No contradiction with 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 only two sentences, front-loaded with the core action. Every word contributes, with no repetition of schema information.

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 lacking an output schema, the description clearly states the return values. It also notes that grading can be done for partial answers, which is critical context. The tool has few params and is well-scoped, so this is complete.

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 documentation covers 100% of the parameters with descriptions, so the baseline is 3. The description does not add further parameter details, but none are needed.

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 verb 'Grade' and the resource 'quiz attempt', and specifies it returns per-question verdicts and an overall score. This effectively distinguishes it from sibling tools like start_practice_quiz, which initiates an attempt.

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 provides clear context for when to call ('once the user has answered'), but does not explicitly mention alternatives or when not to use it. The schema reference to 'quiz_id from start_practice_quiz' indirectly signals the workflow with a sibling tool.

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.2/5.0
Disambiguation5/5

Each tool addresses a distinct task: current affairs listing vs. detail, PYQ sample, topic catalog, knowledge search, and quiz start/submit. There is no functional overlap between the tools, and descriptions make the boundaries clear.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (get_, list_, search_, start_, submit_). The naming scheme is predictable and easy to infer.

Tool Count5/5

With 7 tools, the set is well-scoped for an IAS preparation server. Each tool serves a clear purpose, and the count is within the ideal range for a focused domain.

Completeness4/5

The toolset covers core UPSC prep needs: current affairs, static knowledge search, PYQ sampling, and quiz practice. The only minor gap is the lack of full PYQ papers, but the sample tool intentionally points to the platform for complete sets.

Resources