Skip to main content
Glama

book_visit

Записать клиента на приём в клинику БиоВет. ОБЯЗАТЕЛЬНО: перед вызовом покажите человеку сводку (клиника, дата-время, имя, телефон) и получите его явное подтверждение. Телефон должен быть настоящим — клиника может позвонить для подтверждения.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fioYesИмя клиента
phoneYesРоссийский телефон клиента, 11 цифр
datetimeYesYYYY-MM-DD HH:MM из check_slots
clinic_idYesID клиники из find_clinic
employee_idNoID врача из check_slots (необязательно)

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It adds a meaningful side-effect: the clinic may call the client for confirmation. However, it does not disclose other behavioral traits such as whether the booking is final, how slots are locked, or what happens on failure.

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 compact: one purpose sentence and one mandatory-instruction sentence, both front-loaded with the key information. There is no fluff or irrelevant detail.

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 high schema coverage and no output schema, the description provides the essential preconditions and side-effects needed to call the tool correctly. It could be more complete by describing the expected response or post-booking behavior, but the available information is sufficient for a straightforward booking action.

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?

Schema coverage is 100%, so the baseline is 3. The description adds extra semantic value for the phone parameter by requiring it to be real and reachable, and it lists the fields required in the confirmation summary. These details go beyond the schema descriptions.

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 clearly states the action and resource: 'Записать клиента на приём в клинику БиоВет' — booking a client for a visit at a specific clinic. It is distinct from sibling tools by its booking intent, though it does not explicitly contrast itself with check_slots or find_clinic.

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 explicit pre-call instructions: show the summary and obtain explicit confirmation before invoking the tool. It also requires a real phone number because the clinic may call. It does not explicitly mention when not to use the tool or name alternative tools, but the context and prerequisites are clear.

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

Each tool targets a distinct task: clinic lookup, slot availability, booking, prices, general health Q&A, food safety, and urgency triage. The health-related tools (ask_vet_kb, food_check, triage) have clearly separated purposes in their descriptions, so agent misselection is unlikely.

Naming Consistency4/5

Most tools follow a verb_noun pattern (find_clinic, check_slots, book_visit, get_prices). food_check reverses the order and ask_vet_kb uses an abbreviation, creating minor inconsistencies, but the overall pattern is still readable and predictable.

Tool Count5/5

Seven tools is well within the ideal range and each tool serves a necessary function in the pet-care workflow. The set is neither bloated nor too thin for a veterinary clinic assistant.

Completeness4/5

The main workflows are complete: clinic discovery, appointment booking, price lookup, and health/triage information are all covered. Missing appointment cancellation or modification is a minor gap but does not break the core service.