Skip to main content
Glama

CarChat Inventory

Submit a buyer inquiry to a dealership

submit_inquiry

Send the buyer's question and contact details to the dealership selling the car. The dealer replies directly, usually within minutes. ONLY call this after the buyer has explicitly agreed to share their name and phone number with that dealership.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vinNoVehicle id from search results; omit for a general inquiry
nameYesBuyer's name (required)
emailNo
phoneYesBuyer's phone (required)
messageNo
dealerIdYesFrom vehicle.dealer.id or list_dealers

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
noteYes

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already mark the operation as non-read-only and non-idempotent, so the side-effecting nature is known. The description adds useful context that the dealership replies directly and usually quickly, and that sharing contact details is an intentional action, but it doesn't detail persistence, downstream effects, or response behavior beyond what the output schema already covers.

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 first sentence states the action and target; the second adds the critical consent gate. Everything included 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 submission tool with an output schema and annotations covering side effects, the description plus schema is sufficient for correct invocation. It covers the action, the prerequisite, and the source of dealerId, while the schema fills parameter details. A small gap is the lack of explicit guidance about when a general inquiry vs. a VIN-specific inquiry is appropriate, but the schema already notes that.

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?

Schema coverage is 67%, with dealerId, vin, name, and phone already described. The description adds useful mapping—'buyer's question' maps to message, 'contact details' maps to name/phone/email, and 'the dealership selling the car' clarifies dealerId provenance—but it doesn't add format, optionality, or edge-case guidance beyond the schema.

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

Purpose4/5

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

The description uses a specific verb ('send') and names a clear resource: the buyer's question and contact details to the dealership selling the car. It is readily distinguishable from sibling read/search tools like get_vehicle and list_dealers, though it doesn't explicitly name them.

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 gives an explicit precondition: only call after the buyer has explicitly agreed to share their name and phone number with that dealership. This clearly tells an agent when to call and implies that calling without consent is wrong, though it doesn't discuss alternative tools.

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

Each tool has a clearly distinct role: market stats, individual vehicle details, dealer listings, curated category pages, inventory search, and inquiry submission. There is no meaningful overlap or ambiguity in purpose.

Naming Consistency5/5

All tool names follow the same verb_noun snake_case pattern: get_, list_, search_, submit_. The naming is predictable and consistent across the entire set.

Tool Count5/5

Six tools is a well-scoped size for a car inventory and inquiry server. Each tool covers a necessary step in the buyer journey without unnecessary duplication.

Completeness5/5

The tool surface covers the full workflow: searching inventory, retrieving listing details, viewing market pricing, browsing curated categories, finding dealers, and submitting inquiries. There are no obvious gaps or dead ends for the stated purpose.