Skip to main content
Glama

The whole decision tree

checker_tree

Every question, option and verdict of the Exit readiness checker guide, for reasoning end to end.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

B3.1/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, but it only describes content rather than behavior. It does not state that this is a read-only operation, what the output structure looks like, or how the tree is presented to the agent.

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 a single concise sentence with no filler. 'Every question, option and verdict' is information-dense, though 'for reasoning end to end' is somewhat vague and could have been replaced with a more concrete statement about output or use.

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 zero-parameter content-retrieval tool, the description conveys the main content and purpose sufficiently. However, with no output schema and no annotations, it leaves the output format and relationship to sibling decision-tree tools unspecified, so an agent must infer some context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and an empty input schema, so there are no parameter semantics to document. The baseline of 4 applies, and no information is missing in this dimension.

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 clearly identifies the resource: the entire decision tree of the Exit readiness checker, including every question, option, and verdict. It distinguishes itself from step-oriented siblings like checker_start and checker_answer by signaling whole-tree content, though it lacks an explicit verb such as 'retrieve' or 'return'.

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 gives no explicit guidance on when to use this tool versus checker_start or checker_answer. The phrase 'for reasoning end to end' implies whole-traversal use, but there is no stated when-to-use, when-not-to-use, or mention of 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
Disambiguation5/5

The six tools split cleanly into two workflows: the Exit readiness checker (start, answer, tree) and the Sellable Score enquiry (describe, fields, submit). Even the closest pair, enquiry_describe and enquiry_fields, are clearly separated by purpose: one explains the workflow, the other defines the input schema.

Naming Consistency4/5

Tools consistently use snake_case and meaningful domain prefixes: checker_* and enquiry_*. However, there is no uniform verb_noun pattern: checker_start, checker_tree and enquiry_fields are noun-like, while submit_enquiry is verb-first and checker_answer is ambiguous between noun and command.

Tool Count5/5

Six tools is well-scoped for a server covering two distinct features: a decision guide and an enquiry form. Each tool has a clear role and none feel redundant or unnecessary.

Completeness5/5

The checker workflow is fully covered: start, navigate with answers, and access the full decision tree. The enquiry workflow is also complete: describe the process, provide fields, and submit in a two-step confirmation flow with consent and token handling.

Resources