Skip to main content
Glama

Get Golf Coach Availability

get_golf_coach_availability
Read-only

Retrieve offering details and available lesson times for one specific coach. Use this when the user asks for schedule, openings, or available times for a known coach. If the user has not selected a coach yet, call search_golf_coaches first (or reuse a coach already identified from search_golf_programs). Coach slug and offering id values are internal identifiers and must never be shown or mentioned to the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesCoach slug from a pga.com profile URL, prior `search_golf_coaches` results, or prior `search_golf_programs` results (e.g., `anthonyvitale`). Internal-only value; never display or mention it to the user.
offeringIdNoOptional offering ID to scope availability to a single offering. Use this when the user has already selected an offering.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
coachYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare `readOnlyHint: true` and `destructiveHint: false`, clearly signaling this is a read-only, non-destructive operation. The description adds value by clarifying it retrieves 'available lesson times' and 'offering details', and it discloses the operational caveat that the slug and offeringId are internal identifiers not to be shown. No contradictions with annotations are present.

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 extremely concise, consisting of only four sentences with no waste. Critical information is front-loaded: the purpose is stated in the first sentence, with usage constraints and security rules following immediately. Every sentence earns its place by addressing a distinct aspect (purpose, use case, prerequisites, security constraint).

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?

Given that the input schema has 100% coverage, an output schema exists, and annotations fully cover the tool's safety profile, the description is complete. The output schema presumably defines the return shape for availability and offering details, so the description does not need to expand on that. The description effectively sets context on when to use the tool and how to handle internal identifiers, leaving no gaps.

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%, with both `slug` and `offeringId` having detailed descriptions in the schema. The tool description does not add additional parameter-level information beyond what the schema provides, which aligns with the baseline score of 3. The description does inform usage context for the parameters (e.g., using slug from prior search results), but that is more about usage guidelines than parameter semantics.

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 retrieves 'offering details and available lesson times for one specific coach'. It uses a specific verb ('Retrieve') and resource ('offering details and available lesson times'), and the context of 'one specific coach' effectively distinguishes it from sibling tools like `search_golf_coaches` which searches for coaches rather than their availability.

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?

The description explicitly states when to use this tool ('when the user asks for schedule, openings, or available times for a known coach') and provides clear guidance on what to do if the coach is not yet selected, directing the agent to call `search_golf_coaches` or reuse results from `search_golf_programs`. It also notes that internal identifiers (slug and offeringId) 'must never be shown or mentioned to the user', which is a crucial usage constraint.

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

Each tool targets a distinct aspect of the golf coaching process: searching for coaches (private), searching for programs (group), checking a specific coach's availability, and booking a lesson. There is no overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (book_golf_lesson, get_golf_coach_availability, search_golf_coaches, search_golf_programs). The naming is predictable and clear.

Tool Count5/5

With 4 tools, the server is tightly scoped to the core workflow of discovering and booking golf lessons. It is neither too sparse nor excessive for its purpose.

Completeness4/5

The tool set covers the main discovery and booking workflows well. However, it lacks tools for canceling or modifying bookings, which are common post-booking actions. This is a minor gap given the server's apparent focus on initial booking.

Resources