Skip to main content
Glama

cars_session_visit

Schedule a dealer visit (test drive, purchase, trade-in appraisal). Generates a visit code and QR code the buyer shows at the dealership. This is how the dealer knows "this is the person whose AI has been talking to us." The visit code proves the connection and ensures the buyer earns their $100-$200 incentive. Only use when the buyer explicitly says they want to visit the dealer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vinYesVIN of the vehicle they want to see
dateNoPreferred date (e.g. "Saturday", "2026-05-10")
timeNoPreferred time (e.g. "morning", "2pm")
notesNoBuyer notes for the dealer (e.g. "Ask for Mike", "Bringing my wife")
sessionYesSession hash
agent_idNoYour agent identifier
visit_typeNoType: test_drive, purchase, trade_appraisal, general

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, and it goes well beyond a bare 'schedule' by disclosing that it generates a visit code and QR code, that this code proves the AI-buyer connection to the dealer, and that it enables the $100-$200 incentive. It does not mention side effects like dealer notifications or persistence, but the disclosed behavior is substantial and accurate. No contradiction.

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 four sentences, front-loaded with the core action, then explaining outputs and usage. The third sentence ('This is how the dealer knows...') and fourth condition are useful, though 'proves the connection' is slightly redundant with the prior sentence. Overall efficient and well-structured.

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?

Given no output schema, the description does explain the key outputs (visit code and QR code) and the required precondition. It doesn't enumerate optional parameters, failure modes, or return format, but the 100%-coverage input schema handles parameter semantics. This is enough for an agent to select and invoke correctly, though a slight gap around dealer notification or return details prevents a 5.

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 100%, so the baseline is 3. The description mentions 'test drive, purchase, trade-in appraisal,' which loosely mirrors the visit_type parameter values, but it does not add detail beyond the schema's own property descriptions. It provides no extra parameter-specific semantics, so 3.

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?

Description opens with a specific verb-object pair, 'Schedule a dealer visit,' and enumerates the visit types (test drive, purchase, trade-in appraisal), which distinguishes it from sibling session tools like message/deal. It also uniquely identifies the tool's output (visit code and QR code), making the purpose unmistakable.

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 an explicit triggering condition: 'Only use when the buyer explicitly says they want to visit the dealer.' It does not explicitly name alternative tools, but the clear focus on dealer visits implies when this should be used over session messaging or deal tools. No explicit exclusions beyond the condition, so 4.

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

Most tools target distinct resources (dealer inventory, vehicle search, session actions), but cars_session_message and cars_session_reply have overlapping purposes as both involve posting messages. The session tools are otherwise clearly differentiated by their action verbs.

Naming Consistency3/5

All tools share the 'cars_' prefix and use snake_case, but the verb-noun pattern is inconsistent: some are action-first (cars_search, cars_session_create) while others are noun-only (cars_vehicle, cars_dealers, cars_history). Session tools follow a consistent 'session_<verb>' structure, but the broader set mixes conventions.

Tool Count3/5

With 19 tools, the set is on the heavy end, falling in the 16-25 range that feels borderline. The count is justified by the comprehensive session workflow, but it approaches the threshold where tool selection becomes cumbersome.

Completeness3/5

The core journey of searching, inspecting, and tracking vehicles through sessions is well covered, including dealer communication and trade-in. However, there are notable gaps: no way to remove a vehicle from a session or update general buyer profile details (payment method, timeline) after initial creation.

Resources