Skip to main content
Glama

Georgiaautoquotes

Connect with licensed agents (consent required)

request_agent_contact

Connect the consumer with licensed insurance agents who can quote firm and bind. Needs the quote_id from get_quotes, the consumer's name and phone, and the consumer's explicit consent to be contacted — granted by the human, presented by you, or confirmed by the human directly at the consent URL the elicitation returns. Under scope contact_consumer up to 4 licensed agents receive the request and contact details; sell_identity additionally permits sharing with marketing partners. Nothing leaves without the consent. Every delivery and refusal is receipted, and POST /forget revokes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
consentYes
quote_idYesFrom get_quotes
best_timeNo
full_nameYes
phone_numberYesUS mobile or landline
verify_tokenNoOptional. From POST /v1/verify/check after the consumer enters the code texted to them. A verified number sells at the verified price and is contacted first.
email_addressNo
street_addressNoOptional. Lets a licensed agent answer firm.
preferred_channelNo

Schema Changelog

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

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

The description discloses significant behavioral context beyond the annotations: consent is mandatory before any data leaves, up to 4 agents are contacted under contact_consumer, sell_identity enables sharing with marketing partners, deliveries and refusals are receipted, and POST /forget revokes consent. This is rich, useful transparency for a side-effectful operation.

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?

The description is three dense sentences with no filler: it front-loads the action, then covers prerequisites, scope semantics, and side effects. Every sentence contributes meaningful information.

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 9-parameter tool with a nested consent object and no output schema, the description explains prerequisites, consent flow, scope limits, receipting, and revocation. The main gap is that it does not describe the response format or error conditions, so the agent must infer what the tool returns.

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?

Schema coverage is only 44%, so the description compensates by explaining the core required parameters: quote_id, full name, phone, and especially the consent object's consent modes and the consent URL. It also explains the meaning of the scope parameter. However, optional parameters like best_time, preferred_channel, and verify_token are not addressed in the description.

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?

States a specific action—connecting the consumer with licensed agents who can quote firm and bind—and names the required prerequisite quote_id from get_quotes. This clearly distinguishes it from sibling tools like get_quotes, check_eligibility, and register_agency.

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?

Provides explicit prerequisites: quote_id, consumer name and phone, and explicit consent. It also describes scope-dependent behavior for contact_consumer versus sell_identity, giving the agent clear context for when to use the tool. It does not explicitly contrast with sibling tools, but the conditions are unambiguous.

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

Each tool is scoped to a different step or stakeholder: licensing pre-check, indicative quotes, consent/contact, agency registration/status, lead-queue draining, historical market data, and data-use disclosure. The two price-related tools (get_quotes vs market_data) are clearly separated as live quotes vs de-identified historical demand, so misselection is unlikely.

Naming Consistency3/5

All names are lowercase snake_case and domain-descriptive, but the set mixes imperative verb-object names (get_quotes, register_agency, pull_requests, check_eligibility, request_agent_contact) with noun-style resource names (agency_status, market_data, data_use_terms). This is readable but does not follow one consistent naming convention.

Tool Count5/5

Eight tools is a well-scoped size for this domain, covering the consumer quote/consent workflow, agency registration and lead delivery, and a market-data product without redundant or filler tools. The count feels deliberate rather than thin or bloated.

Completeness4/5

The core user journeys are present: eligibility check leads to quote generation, informed consent, and agent contact, while agencies can register, check status, and pull leads. Minor gaps such as no agency update/deactivate tool and consent revocation only referenced as an external POST endpoint keep it from a perfect lifecycle score.

Resources