Skip to main content
Glama

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 adds substantial behavioral context beyond the annotations: it discloses that up to 4 licensed agents receive the request under contact_consumer scope, that sell_identity also permits sharing with marketing partners, that nothing leaves without consent, and that every delivery and refusal is receipted with POST /forget available for revocation. This gives the agent a realistic model of the side effects and privacy boundaries.

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 dense but every sentence earns its place: purpose, prerequisites, consent mechanics, scope behavior, privacy guarantee, and revocation. It is front-loaded with the core action and keeps the more nuanced consent details organized near the end without redundancy.

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 nested objects and no output schema, the description covers the essential behavioral contract well: what is sent, to whom, under what consent, and how to revoke. It could be more complete by describing the response shape or the elicitation flow's return value beyond mentioning the consent URL, but the core invocation context is sufficiently specified.

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 only 44% schema description coverage, the description compensates for the most important parameters: quote_id, full_name, phone_number, and the consent object with its scope semantics. It explains how consent is granted, what the two scopes mean, and how revocation works. However, optional parameters like best_time, email_address, preferred_channel, and full_name are not elaborated 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?

The description opens with a specific verb and resource: connecting the consumer with licensed insurance agents who can quote firm and bind. It clearly distinguishes this tool from siblings like get_quotes, register_agency, and check_eligibility by focusing on the contact request action. The consent requirement is also stated up front, making the tool's role unambiguous.

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 names get_quotes as the source of the required quote_id and insists on explicit consumer consent, which is the key precondition for using the tool. It does not explicitly list excluded scenarios or compare against alternative contact methods, but the prerequisites and scope conditions are clear enough to guide appropriate invocation.

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

Each tool targets a distinct resource/action: eligibility check, quotes, consent terms, contact request, agency registration, agency status, queue pull, and market data. Even pull_requests and market_data are clearly separated as private consented queue vs. de-identified public dataset. No two tools appear to do the same thing.

Naming Consistency3/5

Five tools follow a verb_noun pattern (check_eligibility, get_quotes, pull_requests, register_agency, request_agent_contact), but three are noun phrases (agency_status, data_use_terms, market_data). The names are readable and underscore-consistent, yet the mixed verb/noun convention is noticeable.

Tool Count5/5

Eight tools cover the consumer quote/contact flow, agency lifecycle, queue delivery, market data, and privacy terms without bloat. Each tool earns a place and the set is within the ideal 3-15 range.

Completeness4/5

The core lifecycle is covered: eligibility, quotes, consent, contact request, agency registration, status, and pulling routed requests. Minor gaps exist—no in-MCP update/delete for agencies and no receipt/revocation tool beyond the mentioned POST /forget—but agents can work around them.

Resources