Skip to main content
Glama

Oklahomaautoquotes

Check eligibility

check_eligibility
Read-onlyIdempotent

Check whether we can return quotes for a state before any personal details are collected. Call this first. Returns the states we are licensed in, what we can do in each, and how many licensed agents can take a request there.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateNoTwo-letter US state code, e.g. NV
productYesauto

Schema Changelog

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

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare the tool read-only, idempotent, and non-destructive. The description adds useful behavioral context: no personal details are collected, and the tool returns licensing scope, permitted actions, and agent counts. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The purpose and ordering come first, followed by a concise summary of the return values. Every sentence earns its place.

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 simple two-parameter read-only tool, the description covers invocation order, output contents, and the absence of personal-data collection. It slightly underspecifies whether an omitted state returns all states versus a single state, but the schema's optional state parameter makes this inferable.

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 documents state's format and product's enum/default, so the description does not need to repeat them. At 50% schema description coverage, the description does not compensate for the undocumented product parameter, but product is fully constrained to 'auto' with a default, limiting practical risk.

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

Purpose5/5

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

The description states a specific verb ('check') and resource (whether quotes can be returned for a state), and clarifies it happens before any personal details are collected. It also names the key output, making the tool's role unmistakable and distinct from quote-fetching siblings.

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

Usage Guidelines4/5

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

The description explicitly says 'Call this first,' so an agent knows this is the entry point. It also explains the prerequisite timing (before personal details are collected), though it does not name alternative sibling tools or provide when-not-to-use guidance.

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/5.0
Disambiguation5/5

Each tool targets a distinct part of the workflow: eligibility, quoting, consent, agency registration, status, queue draining, and market data. There is no meaningful overlap, and descriptions clearly separate consumer-facing from agency-facing operations.

Naming Consistency4/5

Most tools follow a verb_noun pattern like check_eligibility, get_quotes, register_agency, and pull_requests. A few are noun phrases such as agency_status, market_data, and data_use_terms, but all are lowercase snake_case and predictable.

Tool Count5/5

Eight tools fit the server's scope well: the consumer quote/contact flow, agency lead handling, terms disclosure, and market data each have dedicated tools. None feel redundant, and the count is neither thin nor bloated.

Completeness4/5

The core lifecycle is well covered: check eligibility, get quotes, request agent contact, register an agency, check agency status, and pull requests. Minor gaps exist around explicit revocation/forget and agency updating, though these are hinted at in descriptions.

Resources