Start: Licence entitlement checker
checker_startThe first question of the Licence entitlement checker decision guide.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
checker_startThe first question of the Licence entitlement checker decision guide.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
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 disclosing behavior. It only states that this is the first question of the guide; it does not say what calling the tool returns, whether it initializes state, or what the agent should expect in the response. This is thin behavioral disclosure for an unannotated tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence with no wasted words. It is front-loaded with the key information that this is the entry point to the decision guide.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-parameter, no-output-schema tool, the description gives baseline context about where the tool sits in the workflow. However, it does not describe the expected response or the transition to checker_answer, so the agent is left to infer the next step and the return shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so there is nothing for the description to add about parameter semantics. The schema is effectively complete, and the 0-parameter baseline of 4 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the tool as the entry point of the Licence entitlement checker decision guide, which is specific enough to distinguish it from siblings such as checker_answer and checker_tree. It lacks an explicit action verb like 'starts' or 'returns', but the title and 'first question' wording make the purpose reasonably clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'first question' implies this should be called at the beginning of the decision guide, and sibling names hint that checker_answer handles subsequent steps. However, the description gives no explicit guidance about when to use this tool versus alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
The tool set cleanly separates two distinct workflows: the checker tools for navigating a decision guide and the enquiry tools for submitting a form. Within each group, every tool has a clearly different role—start, answer, tree, describe, fields, submit—so an agent is unlikely to confuse them.
Most tools follow a resource-prefix pattern such as checker_start, checker_answer, checker_tree, enquiry_describe, and enquiry_fields. The exception is submit_enquiry, which uses verb_noun form instead of the enquiry_ prefix, and checker_start/answer/tree mix verb and noun suffixes, creating a minor inconsistency.
Six tools is well-scoped for a site with two distinct user-facing features. Each tool serves a necessary step in its workflow, and there are no redundant utilities or excessive entries.
The checker workflow is fully covered: start, per-step answers, and full tree access for validation. The enquiry workflow is also complete with explanation, field schema, and a two-step submission flow that includes consent and confirmation handling.