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.2/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 the final verdict') but does not disclose any side effects, state changes, or whether the answer is recorded permanently. The behavior beyond the core return is opaque.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one concise sentence that front-loads the core action and output. It wastes no words, though it could add a brief usage note without becoming bloated.

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?

The description covers the basic input and output, but given there is no output schema and no annotations, an agent might not know how to format the request, interpret the returned 'next question' structure, or know whether the final verdict is a terminal state. The description is adequate for a simple step in a flow but leaves room for ambiguity in a multi-step conversation.

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%, so the description must compensate. It clarifies that 'question' is a question id (though the schema says string) and that 'choice' is an index. However, it does not explain the format of the question id, how to obtain it (presumably from checker_start), or the range/meaning of the choice index beyond what the schema's minimum 0 implies.

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 ('return') and resource ('next question or the final verdict'), and clarifies that it takes a question id and a choice index. However, it does not explicitly distinguish itself from sibling tools like checker_start or checker_tree, so the differentiation is implicit rather than stated.

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 description implies the tool is used when the user has answered a question (has a choice index) and wants to progress, which gives some context. But it does not provide explicit guidance on when to use this versus checker_start or checker_tree, nor does it mention any exclusions or alternatives.

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

The checker tools are mostly distinct: start initializes, answer advances the flow, and tree provides the full graph for end-to-end reasoning. The enquiry tools are clearly separated by purpose, though checker_answer and checker_tree both deal with question/option data and could be confused at first glance.

Naming Consistency3/5

There is a consistent 'checker_' and 'enquiry_' prefix, but the second half mixes verbs and nouns: checker_start/checker_answer are actions, checker_tree/enquiry_fields are resources, and submit_enquiry is a verb-noun pair. The convention is readable but not fully uniform.

Tool Count5/5

Six tools is well-scoped for a server covering two related workflows: the checker Q&A flow and the enquiry submission flow. Each tool earns its place and the set is neither thin nor bloated.

Completeness5/5

The checker flow is complete with start, step-by-step traversal, and full tree access, while the enquiry flow covers instructions, schema discovery, and a confirmation-gated submission process. There are no obvious dead ends or missing operations for the stated domain.

Resources