Skip to main content
Glama

get_inquiry_status

Check the processing status of an inquiry previously sent with send_inquiry, using the status_token from its response. The token is issued ONLY to the inquiry's creator — possession proves ownership; there is nothing to guess or enumerate. Returns ONLY the processing status, never any customer data.

Status values: novo (received, not yet read), procitano (read by the sales team), odgovoreno (the team has contacted the customer), zatvoreno (closed).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_tokenYes

Schema Changelog

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

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and does so well. It discloses the token's ownership model, that there is nothing to guess or enumerate, that the tool returns only processing status and never customer data, and it enumerates all possible status values with meanings.

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 tightly written, front-loads the core purpose, and every sentence adds value. The security note is brief but important, and the status enum list is clear and complete without unnecessary wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema and no annotations, the description fully equips an agent to call the tool correctly: it explains how to obtain the token, what the operation returns, what it never returns, and the complete set of status values. Nothing essential is missing for this simple single-parameter tool.

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?

The schema provides only the parameter name 'session_token' with no description, so the description must compensate. It explains the token's source, its ownership property, and how it is issued, which is highly useful. Slight deduction because the description calls it 'status_token' without explicitly mapping it to the schema's 'session_token' parameter name.

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 clearly states the tool's verb ('Check'), resource ('processing status of an inquiry'), and provides a strong link to send_inquiry. It is immediately distinguishable from the sibling vehicle-focused tools, and the scope is 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 gives clear context for when to use the tool: after sending an inquiry with send_inquiry and possessing the status_token from its response. It does not explicitly name alternatives to avoid, but it makes the prerequisite condition so specific that the intended usage is unmistakable.

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