Skip to main content
Glama

Nevada Insurance

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

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

The description goes well beyond the annotations by explaining exactly what happens: up to 4 agents receive the request, sell_identity expands sharing to marketing partners, nothing leaves without consent, deliveries/refusals are receipted, and POST /forget revokes. It also clarifies the consent-granting modes. No contradiction with annotations exists.

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 dense but front-loaded with the core purpose, then layers prerequisite and behavioral detail. It is slightly run-on and uses jargon like 'quote firm and bind' and 'elicitation,' but each sentence adds meaningful guidance, so the length is justified.

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 complex tool with 9 parameters, nested consent objects, and no output schema, the description covers purpose, prerequisites, consent mechanics, scope effects, and revocation. It does not explicitly describe the response shape or return values beyond saying deliveries are receipted, which is a notable gap given the missing output schema.

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?

With schema description coverage at only 44%, the description compensates well for the most important parameters: quote_id, full_name, phone_number, and the nested consent object, including scope semantics. However, optional parameters such as best_time, preferred_channel, email_address, and verify_token receive no meaning beyond the schema.

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 action — connecting the consumer with licensed insurance agents — and the resource it acts on. It clearly differentiates the tool by tying it to a prerequisite (quote_id from get_quotes) and by explaining scope-driven behavior, which distinguishes it from siblings like get_quotes or 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?

The description provides clear prerequisites and context: quote_id, consumer name/phone, explicit consent, and scope. It does not explicitly name when NOT to use the tool or point to alternatives, but the dependency on get_quotes and the consent condition make the intended usage fairly 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 targets a clearly distinct function: eligibility checking, quoting, agent contact, agency registration/status/queue, data terms, and market data. The only adjacent pair, agency_status and pull_requests, is cleanly separated by status versus queue draining.

Naming Consistency4/5

Five names use an imperative verb_noun pattern (check_eligibility, get_quotes, register_agency, pull_requests, request_agent_contact), while agency_status, data_use_terms, and market_data are resource-style names. All are lowercase underscore names and still readable, so this is a minor deviation rather than a chaotic mix.

Tool Count5/5

Eight tools is well scoped for a platform covering eligibility, quotes, consumer contact, agency onboarding/status/queue, data terms, and market data. Each tool has a distinct job and none feels redundant.

Completeness4/5

The core journey is covered end to end: check eligibility, get quotes, request agent contact, register an agency, check status, and pull records. Minor gaps exist around agency profile updates/removal and exposing a revoke/forget action as a first-class tool, but agents can complete the main workflows without dead ends.

Resources