Skip to main content
Glama

send_inquiry

Send a purchase inquiry (lead) to the VIP Cars sales team on the customer's behalf. The team calls/e-mails the customer back to arrange a viewing or test drive — there is no online payment. ALWAYS ask the customer for consent before sharing their contact details. vehicle_id is optional (omit for a general inquiry).

The response includes a status_token — keep it; it is the ONLY key to later check the inquiry's processing status via get_inquiry_status.

Anti-abuse: at most a few inquiries per contact per day; excess raises an error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageNo
vehicle_idNo
customer_nameYes
customer_emailNo
customer_phoneYes

Schema Changelog

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

  1. First observed

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations to lean on, the description carries the full burden and does so thoroughly: it warns about consent before sharing contact details, states there is no payment, reveals the status_token as the only retrieval key, and discloses the per-contact anti-abuse rate limit. This goes well beyond a generic 'send' statement.

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 text is front-loaded with the core action and then packs only high-value warnings and workflow notes. Every sentence earns its place, and the status_token/anti-abuse guidance is clearly delineated.

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 5-parameter tool with no annotations and no output schema, the description supplies the essential behavioral context: the return token, required consent, and rate limit. It is slightly incomplete on parameter-level detail (e.g., message and customer_email semantics), but the description is otherwise sufficient for an agent to call the tool safely.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description needed to explain parameters, but it only adds meaning for vehicle_id ('optional (omit for a general inquiry)'). customer_email and message are still undocumented even though they are nullable/optional, and no formats or consent specifics are mapped to the contact fields.

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: 'Send a purchase inquiry (lead) to the VIP Cars sales team on the customer's behalf.' It also clarifies the downstream outcome (viewing/test drive) and thereby distinguishes itself from vehicle-lookup and status-checking 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?

It clearly frames when the tool is appropriate (customer wants to inquire about a purchase) and references get_inquiry_status as the later follow-up. It does not explicitly enumerate when not to use it beyond the 'no online payment' note and the anti-abuse limit, so it stops just short of full exclusion 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.3/5.0
Disambiguation5/5

Each tool has a distinct responsibility: search discovers inventory, get_vehicle provides single-vehicle details, compare_vehicles does side-by-side comparison, send_inquiry creates leads, and get_inquiry_status tracks them. There is no meaningful overlap or ambiguity between tool purposes.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: search_vehicles, get_vehicle, compare_vehicles, send_inquiry, get_inquiry_status. The verbs clearly describe the action and the nouns identify the resource, making the set predictable and scannable.

Tool Count5/5

Five tools is a well-scoped size for a car dealership MCP server. Each tool serves a distinct user need—searching, viewing details, comparing, inquiring, and checking inquiry status—without unnecessary redundancy or bloat.

Completeness5/5

The tool surface covers the full customer-facing workflow: discovering vehicles, inspecting full details, comparing options, submitting inquiries, and following up on those inquiries. No obvious dead ends or missing core operations exist for the stated purpose.

Resources