Skip to main content
Glama

What to collect before checkout

get_purchase_requirements

Everything MIB's own purchase forms collect before payment, per line — for motor that is the full vehicle (make, model, year, body type, colour, usage, plate, chassis/VIN, engine number, seats), the insured's address details, and a next of kin. Collect it all in chat, then call get_buy_link with it: the checkout page arrives prefilled and the customer only signs in, reviews and pays. Identity (DOB/NIN) is never collected in chat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
product_typeYes

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses what data is included (vehicle details, address, next of kin) and what is excluded (identity). It also explains the downstream behavior (prefilled checkout page). It does not explicitly state that the tool is read-only, but the nature of 'get' and the phrasing imply it is non-mutating.

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 dense two-sentence block that front-loads the core purpose. Every sentence adds value, from the list of fields to the workflow instruction to the identity exclusion. It is longer than the typical one-liner but appropriately sized given the need to convey both the return content and a usage sequence.

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

Completeness4/5

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

For a tool with one parameter and no output schema, the description is quite complete. It tells the agent what the tool returns (a list of required data), how to use the result (call get_buy_link), and a boundary (identity is never collected). The lack of explicit output schema is mitigated by the enumeration of fields, at least for motor, which sets expectations for other product types.

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?

The schema has zero coverage for the product_type parameter, so the description must compensate. It provides an example for 'motor' with a full list of fields, indicating that requirements vary by product type. However, it does not explain what to expect for health, travel, or gadget, leaving the agent to infer that the structure is analogous. This is some compensation but not complete.

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 states that the tool returns the data items collected by MIB's purchase forms, with a detailed example for motor. It distinguishes itself from siblings by focusing on 'purchase' rather than 'quote' and by explaining how it feeds into get_buy_link. However, it does not explicitly contrast itself with get_quote_requirements, so it misses full sibling differentiation.

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

Usage Guidelines5/5

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

The description explicitly tells the agent when to use the tool: collect all listed data in chat, then call get_buy_link with it. It also provides a clear exclusion: 'Identity (DOB/NIN) is never collected in chat.' This gives strong guidance on placement in the workflow and alternatives implicitly.

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

A4.3/5.0
Disambiguation5/5

Each tool has a distinct purpose: about_mib_for_developers is informational, compare_insurance_quotes and policy_checkup differ (new vs existing policies), get_quote_requirements provides inputs, get_buy_link generates purchase links, and list_insurance_products browses catalogs. No two tools overlap ambiguously.

Naming Consistency4/5

Most tools follow a verb_noun pattern (compare, get, list, about), but policy_checkup is noun_verb, and about_mib_for_developers is more descriptive. Minor inconsistency but still readable and predictable.

Tool Count5/5

With 6 tools, the server is well-scoped for insurance comparison and purchase. Each tool fills a necessary role without redundancy or bloat, fitting the typical 3-15 tool range.

Completeness5/5

The toolset covers the full workflow: requirements gathering, quote comparison, purchase link generation, product browsing, and existing policy analysis. No obvious missing operations for its stated purpose.