Skip to main content
Glama

Answer a question, get the next step

checker_answer

Given a question id and the chosen option (its choice index), return the next question or the final verdict.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
choiceYes
questionYes

Schema Changelog

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

  1. First observed

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the output—next question or final verdict—but never clarifies whether submitting an answer has side effects, whether choices are persisted, whether IDs are validated, or what happens on invalid input.

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 sentence that front-loads the inputs and then states the output. Every part earns its place, with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter tool with no annotations and no output schema, the core call is understandable, but the description is not fully self-sufficient. It omits the return shape of the next question or final verdict, the source of `question` IDs, and the tool's relationship to checker_start and checker_tree.

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 0%, and the description does add meaning by implying `question` is an identifier and `choice` is an option index. It still leaves gaps: it doesn't explain where valid question IDs come from, whether `choice` must belong to the given question, or what the actual range of valid option indexes is beyond the schema's minimum of 0.

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 names a specific operation—'return the next question or the final verdict'—and the two required inputs. It is clear and actionable, though it doesn't explicitly distinguish this tool from siblings like checker_start or checker_tree, and 'question id' doesn't exactly match the schema property name `question`.

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

Usage Guidelines3/5

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

The title 'Answer a question, get the next step' and the phrase 'Given a question id and the chosen option' imply this is the tool to advance a checker flow. However, it provides no explicit when-to-use/when-not-to-use guidance and does not mention alternatives such as checker_start or checker_tree.

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

A3.8/5.0
Disambiguation5/5

The six tools split cleanly into two distinct workflows: the checker_* set for the decision guide and the enquiry_* plus submit_enquiry set for Club Grants enquiries. Each tool has a clear, non-overlapping role, and the descriptions reinforce the boundaries.

Naming Consistency4/5

The checker_* and enquiry_* prefixes create a predictable prefix-based pattern, and submit_enquiry is clear in meaning. However, submit_enquiry breaks the pattern by placing the verb first instead of following it with the prefix, making the naming slightly inconsistent.

Tool Count5/5

Six tools is well-scoped for the server's purpose: three tools cover the decision-guide workflow and three support the enquiry workflow. Each tool earns its place without redundancy or unnecessary expansion.

Completeness5/5

The decision-guide tools cover starting, progressing, and inspecting the full tree, so the workflow is fully traversable. The enquiry tools cover field discovery, process explanation, submission, validation, and confirmation, leaving no critical dead ends for the stated domain.

Resources