Skip to main content
Glama

booking

Server Details

Fixed-price GC & Brisbane airport and cruise transfers. Live quotes, human-confirmed bookings.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.4/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: availability checks, pricing quotes, service information, and booking requests. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (check_availability, get_quote, get_service_info, request_booking). The naming is uniform and predictable.

Tool Count5/5

Four tools is well-scoped for a booking-focused server, covering the essential pre-booking and booking request steps without redundancy.

Completeness4/5

The core lifecycle of checking, quoting, and requesting a booking is covered. Missing cancel/status tools are a minor gap since the server emphasizes booking requests rather than full booking management.

Available Tools

4 tools
check_availabilityCheck availabilityA
Read-only
Inspect

Whether a pick-up date/time is bookable under standard operating rules (not a live calendar). Standard hours 06:00-21:00 AEST; outside that is an after-hours request; same-day should phone.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesYYYY-MM-DD
timeYesHH:MM 24h
Behavior4/5

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

Annotations already declare readOnlyHint, but the description adds value by explaining the tool is rule-based rather than a live calendar, and by specifying the AEST hours and after-hours handling. This goes beyond the minimal safety profile.

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 with no filler. The first defines purpose and scope, the second gives operational rules. Well-structured and front-loaded.

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 simple read-only tool with two clearly documented parameters, the description covers purpose, scope, edge cases (after-hours, same-day), and the non-live nature. No output schema is needed given the 'whether' wording.

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 covers parameter formats completely (YYYY-MM-DD, HH:MM 24h). The description adds that the date/time refers to pick-up and implies AEST timezone via the standard hours statement, providing marginal extra meaning.

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 checks whether a pick-up date/time is bookable under standard operating rules. It distinguishes itself as a rule-based check ('not a live calendar') and is clearly separate from siblings like get_quote and request_booking.

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 useful operating context: standard hours, after-hours classification, and same-day phone advice. It does not explicitly name alternative tools, but the phrase 'same-day should phone' provides guidance on when not to rely solely on this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_quoteGet a fixed-price quoteA
Read-only
Inspect

Exact per-vehicle prices from the live fixed price list — airport transfers (OOL/BNE) and Brisbane Cruise Terminal runs (use "Brisbane Cruise Terminal" or "Pinkenba" as the place). Deterministic — never estimates. If match is "none", give the customer the phone number instead of guessing.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesDrop-off place, e.g. "Gold Coast Airport" or a suburb
paxNoPassengers 1-11 (filters vehicles)
dateNoYYYY-MM-DD (optional)
fromYesPick-up place, e.g. "Broadbeach" or "OOL"
timeNoHH:MM 24h (optional; flags after-hours surcharge)
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the description builds on that by adding 'Deterministic — never estimates' and the fallback behavior for unmatched requests. It also clarifies that prices are per-vehicle, which is beyond the structured fields. 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, each packed with relevant information: exactness, live source, scope, determinism, and fallback behavior. No redundancy or filler. The most critical info is front-loaded.

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?

With no output schema, the description adequately conveys return value semantics (exact per-vehicle prices) and the 'none' fallback. It does not detail output format or surcharge handling, but these are partially covered by the schema's time parameter and are less critical for a simple quote tool. Overall, it is reasonably complete.

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?

All parameters are fully described in the schema, so the baseline is 3. The description adds extra value by specifying valid place values for cruise terminal runs (e.g., 'Brisbane Cruise Terminal' or 'Pinkenba') and clarifying that prices are per-vehicle, which enhances the meaning of from/to parameters.

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 purpose: providing exact per-vehicle prices from a live fixed price list. It specifies the resource (fixed price list) and scope (airport transfers and cruise terminal runs), which distinguishes it from siblings like check_availability or request_booking.

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 (for specific airport transfers and cruise terminal runs) and provides a fallback instruction for 'none' matches. However, it does not explicitly contrast with alternative tools or state when not to use it, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_service_infoService informationA
Read-only
Inspect

Full business facts: fleet, pricing list, policies, service area, contact details. Use this before answering questions about GC Airport Transfers.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false. The description adds content scope (fleet, pricing, policies, service area, contact details) and domain context, which is useful. There is no contradiction and no unmentioned behavioral traits.

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: the first lists the data categories, the second gives usage instruction. Every word earns its place.

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 parameterless lookup tool, the description completely conveys the purpose, content, and appropriate usage context. No output schema exists, but the described content categories sufficiently set expectations.

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 tool has zero parameters, and the schema is empty with 100% coverage. The description is not required to explain parameters; it correctly focuses on the response content.

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 explicitly states the tool retrieves 'Full business facts' including fleet, pricing, policies, service area, and contact details. It distinguishes itself from sibling tools by positioning itself as the preliminary reference for GC Airport Transfers questions.

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 a clear usage directive: 'Use this before answering questions about GC Airport Transfers.' It implies this is the first stop for general business information, but does not explicitly contrast with siblings for availability/quote/booking scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

request_bookingRequest a bookingAInspect

Lodge a booking REQUEST for any fixed-price route — airport or cruise terminal. It is created as pending; the operator confirms and the customer receives a payment link by email. No payment happens through this tool. Confirm all details with the customer first.

ParametersJSON Schema
NameRequiredDescriptionDefault
paxYesPassengers 1-11
dateYesYYYY-MM-DD (at least 1 hour ahead; same-day: phone instead)
nameYesCustomer full name
timeYesHH:MM 24h
emailYesCustomer email (receives acknowledgement + payment link)
notesNoAnything else, e.g. child seats with ages (optional)
phoneYesCustomer phone
flightNoFlight number (optional, enables free flight tracking)
pickupYesPick-up place
dropoffYesDrop-off place
sandboxNotrue = create a TEST booking that never reaches the operator and sends no emails. For integration testing only.
vehicleNosedan | carnival | maxi (auto-upgraded if too small for pax)
Behavior4/5

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

Annotations only indicate readOnlyHint=false and destructiveHint=false, providing minimal safety profile. The description adds meaningful behavioral context: the booking is created as 'pending', the operator confirms, and the customer receives an email payment link. It also clarifies that no payment happens through this tool, which is important for agents to know. This goes beyond what annotations convey.

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 three sentences: purpose, behavioral flow, and a safety note. It is front-loaded with the primary action and has no wasted words. All content earns its place.

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 the tool's complexity (12 parameters, no output schema), the description adequately covers the overall behavior: request creation, pending state, operator confirmation, email payment link, and no payment. It also gives a usage guideline. Minor omissions like sandbox mode are handled in the schema, so the description is sufficiently complete.

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?

The input schema has 100% description coverage, so the schema already documents all parameters. The description mentions 'fixed-price route' and 'no payment' but does not add further meaning to individual parameters beyond what the schema provides. Baseline 3 is appropriate.

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 action ('Lodge a booking REQUEST'), the resource ('booking'), and the scope ('any fixed-price route — airport or cruise terminal'). It also differentiates from sibling tools like check_availability, get_quote, and get_service_info by focusing on the actual booking action rather than pre-booking steps.

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?

It provides clear context: use this for fixed-price routes, creates a pending booking, and no payment occurs. It also instructs users to confirm details with the customer first, which is a usage prerequisite. However, it does not explicitly name alternatives or say 'use check_availability first', so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    Enables AI agents to get fixed-price quotes and book London airport transfers, with flight validation and inter-agent communication via A2A protocol.
  • A
    license
    -
    quality
    C
    maintenance
    MCP server for Pesties.au pest control booking (Gold Coast, Logan, South Brisbane, Australia). 7 tools including signed quote tokens and two-phase booking commit.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources