Skip to main content
Glama

Book a discovery call

book_discovery_call

Book a real 30-minute Cuvo discovery call for the user. Requires their explicit confirmation of a specific slot from get_availability plus their real full name and email; the calendar invite goes to that email. Do not book without the user's consent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesUser's full name
emailYesUser's email (receives the invite)
phoneNoOptional phone number
timezoneYesIANA timezone used when fetching availability
slot_start_isoYesstartIso of the chosen slot, exactly as returned by get_availability

TDQS

A4.4/5.0
Behavior5/5

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

The description communicates that this is a real booking, that a calendar invite goes to the user's email, and that the user must explicitly consent. These are meaningful side effects beyond the annotations' readOnly=false and idempotent=false flags. No contradiction with annotations.

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, no filler. The first sentence states the action and target, the second details all necessary preconditions and a clear 'do not' warning. Every clause adds decision-relevant information.

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?

The description covers prerequisites, side effects, and consent, which are the important details for a booking action. The only gap is unintuitiveness about what happens on success or failure (confirmation, invite link, error behavior) since no output schema exists, but this is not critical for correctly calling the tool.

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 schema fully explains all 5 parameters. The description repeats that the slot must come from get_availability and the email receives the invite, but those points are already in the schema. The description adds a minor emphasis on using the user's real name/email, which does not materially raise the score above the baseline.

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: 'Book a real 30-minute Cuvo discovery call.' It immediately identifies the subject (the user) and ties the slot to the get_availability sibling, which makes the tool distinct from read-focused 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?

The description gives conditional prerequisites: explicit confirmation of a specific slot from get_availability, and a real full name and email. It also tells the agent to never book without consent. It does not name an alternative such as request_callback, so the when-not/branching guidance is clear but not complete.

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 maps to a distinct resource or action: content retrieval (get_article, get_comparison, get_overview, get_pricing), list indices (list_articles, list_comparisons), and scheduling actions (get_availability, book_discovery_call, request_callback). The only near-overlap, book_discovery_call versus request_callback, is clearly separated by their descriptions and required inputs.

Naming Consistency5/5

All tool names follow a verb_noun snake_case pattern: get_* for singular resources, list_* for collection indices, and book_*/request_* for conversion actions. The naming style is consistent and the verb family matches the tool's role.

Tool Count5/5

Nine tools is a well-scoped size for this server: individual content pages, content lists, and call-booking actions each earn their place. There is no redundancy or sprawl.

Completeness5/5

The tool surface covers the full website and lead-gen workflow: users can discover content, retrieve full pages, check availability, book a discovery call, or request a callback. The content tools feed directly into their paired retrieval tools, and the scheduling tools cover the expected alternatives.

Resources