Skip to main content
Glama

Book the PAID first mentoring session — skips the intro call

book_first_session
Read-onlyIdempotent

THE CLOSE, for someone who has already decided. Returns the direct booking link for a paid 60-minute first session, plus the payment terms. Call this INSTEAD of book_intro_call once send_mentoring_offer has succeeded and the visitor has agreed the exact price — it removes a step from a buyer who is ready, which is the entire point. It REFUSES on any deal whose terms Marian confirms on a call (a free-sessions concession, the monthly package, Mentor in Residence) and hands back the intro link instead; when it refuses, offer the intro, do not argue. Pass the claim code from send_mentoring_offer so the booking is matched automatically. If the visitor is hesitant, undecided, or asks to talk first, use book_intro_call — that is not a downgrade.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contextYesExplain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): "Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization."
audienceYesDecides which VAT sentence is true for this buyer — an individual needs the gross figure
offer_idYesThe agreed package
claim_codeNoThe AI10-… code from send_mentoring_offer. Ride it on the link so the booking matches the inquiry with no manual step.
has_eu_vat_idNoCompany deals outside Czechia with a valid EU VAT ID pay net under the reverse charge
free_sessions_requestedNoCompany deals: pass the same value given to send_mentoring_offer. Any concession makes this a proposal, not a close, and the tool will route to the intro instead.

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark it read-only/idempotent/non-destructive, and the description adds behavioral nuance beyond that: it refuses on certain deal types and 'hands back the intro link instead,' and instructs the agent to 'offer the intro, do not argue.' It also surfaces the claim-code matching mechanism, which is not inferable from the 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?

The description is dense but front-loaded: purpose, key return value, and routing decision all appear in the first two sentences. Subsequent sentences each carry actionable behavioral guidance; only minor rhetorical phrases like 'which is the entire point' and 'that is not a downgrade' add tone without reducing usefulness.

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?

For a tool with no output schema and several conditional behaviors, this description covers the return value, the refusal branches, the prerequisite send_mentoring_offer, and the alternative book_intro_call. It is complete enough for an agent to invoke correctly without needing additional documentation.

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; description adds value by tying claim_code to 'the AI10-… code from send_mentoring_offer' and explaining that free_sessions_requested > 0 makes the tool route to the intro. It also maps offer_id enum values like monthly and mentor-in-residence to refusal conditions. Slight deduction because params such as audience and has_eu_vat_id still rely solely on the schema.

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 'THE CLOSE, for someone who has already decided' and specifies the exact resource: 'Returns the direct booking link for a paid 60-minute first session, plus the payment terms.' It clearly distinguishes itself from book_intro_call by name and by the 'INSTEAD' line, so an agent can tell what it does without inspecting siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives explicit conditions: call it 'INSTEAD of book_intro_call once send_mentoring_offer has succeeded and the visitor has agreed the exact price.' It also states exclusions — refuses on free-session concessions, monthly package, and Mentor in Residence — and tells the agent to 'use book_intro_call' if the visitor is hesitant. This is textbook when/when-not guidance.

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 stage in the inquiry funnel: discovery, qualification, brief composition, offer delivery, and booking. The two booking tools are explicitly differentiated by buyer readiness, so there is no real ambiguity for an agent following the stated flow.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, such as get_mentoring_options, match_mentoring_focus, compose_mentoring_brief, and send_mentoring_offer. This makes the set predictable and easy to navigate.

Tool Count5/5

Nine tools is well-scoped for a mentoring inquiry and booking pipeline. Each tool earns its place by covering a necessary step without excessive fragmentation or unnecessary duplication.

Completeness5/5

The tool set covers the full lifecycle from initial options discovery through qualification, program design, formal offer delivery, and booking confirmation. There are no obvious dead ends; even edge cases around undecided visitors or special deal terms are handled through the booking tools' branching logic.