Skip to main content
Glama

Start: Which 409A safe harbour applies?

checker_start

The first question of the Which 409A safe harbour applies? decision guide.

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

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of revealing call semantics. It only states that this is the first question, without indicating whether invocation is read-only, whether it resets or initializes state, or what the agent should expect in the response.

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 short sentence with no wasted words. It is efficiently structured, though it partly restates the title and could have used its brevity to add behavioral or output context.

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 entry point, the description gives a minimal but recognizable sense of purpose. However, because there is no output schema, the description should more explicitly describe what is returned, such as the first question text and available answers, or how the agent should proceed afterwards.

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 the input schema is empty, so the schema fully documents the parameter surface. With no parameters to explain, the baseline of 4 applies and the description does not need to add parameter-level detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the tool as the first question in a 409A safe harbour decision guide, so an agent can infer it is the entry point. However, it is phrased as a noun phrase rather than an action ('returns', 'starts'), and it does not explicitly differentiate it from sibling tools such as checker_tree or checker_answer.

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?

No guidance is given on when to use this tool versus any alternative. It does not state that this is the recommended starting point, nor does it mention sibling tools for continuing the guide, such as checker_answer or checker_tree. Prerequisites and conditions for use are also absent.

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 two functional areas are clearly separated: checker_* tools handle an interactive decision tree, while enquiry_* tools handle the enquiry submission flow. Within each group, each tool has a distinct role: start/answer/tree for the checker, and describe/fields/submit for the enquiry.

Naming Consistency4/5

All names are lowercase snake_case and mostly use domain prefixes (checker_ and enquiry_), which is easy to read and predict. The minor inconsistency is submit_enquiry, which reverses the domain/action order compared to enquiry_describe and enquiry_fields.

Tool Count5/5

Six tools is a well-scoped count: three tools cover the interactive checklist flow and three cover the enquiry submission flow. Each tool has a clear purpose and none feel redundant.

Completeness5/5

The checker flow is complete: start begins, answer progresses, and tree provides the full decision graph for end-to-end reasoning. The enquiry flow is also complete: describe explains the process, fields provides the schema, and submit_enquiry handles both validation and final submission with confirmation.

Resources