Skip to main content
Glama

Flautoquotes

Get indicative quotes

get_quotes
Read-only

Return indicative auto insurance prices from multiple carriers, where this entity is licensed to show them. Takes rating facts only — no name, phone, email, SSN or licence number is required for an indicative price. Where we are not licensed to show prices, the request is still registered and a quote_id returned so licensed agents can quote it. If facts are missing the server asks for exactly what it needs and nothing more.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateNoOptional; derived from the ZIP when absent
coverageYes
garaging_zipYesFive-digit ZIP where the vehicle is kept
vehicle_yearYes
date_of_birthYes
annual_mileageNo
violations_3yrNo
years_licensedNo
prior_continuousNo
vehicle_make_modelYes

Schema Changelog

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

  1. First observed

TDQS

B3/5.0
Behavior1/5

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

There is an annotation contradiction: readOnlyHint=true while the description says 'the request is still registered and a quote_id returned.' Registering a request and returning a quote_id implies a side effect, which conflicts with the read-only annotation. The description does usefully disclose the no-PII and missing-facts behavior, but the contradiction dominates this dimension.

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?

Three sentences with the core purpose front-loaded. The licensed/unlicensed branch and missing-facts behavior are compressed efficiently without filler. It is slightly dense, but every sentence earns its place.

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?

With no output schema, the description mentions quote_id but does not describe the overall response format, how prices are structured, or error behavior. It covers the licensed/unlicensed distinction, the no-PII constraint, and the missing-facts behavior, which is good context. Given 10 parameters and no output schema, the description is not fully complete.

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 coverage is only 20%, so the description must compensate. It adds meaningful high-level semantics: inputs are rating facts only, no PII is required, and the server asks for exactly the missing facts. However, it does not define individual parameters such as annual_mileage or prior_continuous, leaving those to inference from their names. This is adequate but not thorough.

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?

States a specific verb and resource: 'Return indicative auto insurance prices from multiple carriers.' It also adds a key scope condition, licensed vs. not licensed, and implies a quote_id mechanism, which distinguishes it from a generic pricing tool. It does not explicitly name sibling tools like market_data or check_eligibility, so it stops short of full differentiation.

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 use when indicative quotes are needed and explains licensed/unlicensed behavior, but it does not explicitly state when to use alternatives like market_data or check_eligibility. There are no when-not-to-use instructions, so the guidance is inferred rather than explicit.

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

Each tool maps to a distinct job: eligibility, quoting, consent/terms, agency registration, status, lead pull, market data, and contact request. The two data-delivery tools (market_data and pull_requests) are clearly separated by de-identified versus consented/identified content.

Naming Consistency3/5

Five tools follow an imperative verb_noun style (check_eligibility, get_quotes, pull_requests, register_agency, request_agent_contact), while three are noun-only resource names (agency_status, data_use_terms, market_data). All are readable snake_case, but the verb/noun split prevents a single predictable pattern.

Tool Count5/5

Eight tools cover both consumer-facing and agency-facing sides of the quote/contact platform without redundancy. Each tool has a distinct role, and the count is squarely in the well-scoped range.

Completeness4/5

The core lifecycle is covered: eligibility, quotes, consent, agency registration, status, lead delivery, and market data. Gaps are update/delete or revocation operations (e.g., POST /forget is referenced but not exposed as a tool, and agency details cannot be updated), but agents can complete the main workflows.

Resources