booking
Server Details
Fixed-price GC & Brisbane airport and cruise transfers. Live quotes, human-confirmed bookings.
- Status
- Unhealthy
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct purpose: availability checks, pricing quotes, service information, and booking requests. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern (check_availability, get_quote, get_service_info, request_booking). The naming is uniform and predictable.
Four tools is well-scoped for a booking-focused server, covering the essential pre-booking and booking request steps without redundancy.
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 toolscheck_availabilityCheck availabilityARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | YYYY-MM-DD | |
| time | Yes | HH:MM 24h |
TDQS
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.
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.
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.
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.
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.
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 quoteARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Drop-off place, e.g. "Gold Coast Airport" or a suburb | |
| pax | No | Passengers 1-11 (filters vehicles) | |
| date | No | YYYY-MM-DD (optional) | |
| from | Yes | Pick-up place, e.g. "Broadbeach" or "OOL" | |
| time | No | HH:MM 24h (optional; flags after-hours surcharge) |
TDQS
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.
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.
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.
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.
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.
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 informationARead-onlyInspect
Full business facts: fleet, pricing list, policies, service area, contact details. Use this before answering questions about GC Airport Transfers.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| pax | Yes | Passengers 1-11 | |
| date | Yes | YYYY-MM-DD (at least 1 hour ahead; same-day: phone instead) | |
| name | Yes | Customer full name | |
| time | Yes | HH:MM 24h | |
| Yes | Customer email (receives acknowledgement + payment link) | ||
| notes | No | Anything else, e.g. child seats with ages (optional) | |
| phone | Yes | Customer phone | |
| flight | No | Flight number (optional, enables free flight tracking) | |
| pickup | Yes | Pick-up place | |
| dropoff | Yes | Drop-off place | |
| sandbox | No | true = create a TEST booking that never reaches the operator and sends no emails. For integration testing only. | |
| vehicle | No | sedan | carnival | maxi (auto-upgraded if too small for pax) |
TDQS
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.
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.
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.
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.
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.
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
check_availability - First observed
get_quote - First observed
get_service_info - First observed
request_booking
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Book London airport & cruise port transfers to any UK address. Fixed prices, free cancellation.
Fixed London chauffeur prices: airport & cruise transfers, hourly hire, day trips, booking links.
Discover transfers, private drivers, and Fiji rentals with non-persisted quote previews.
Private chauffeured transport in Los Angeles. Price any trip at a fixed all-in rate, no account.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceFixed London chauffeur prices for AI agents: Heathrow/Gatwick/Stansted/Luton and cruise-port transfers, hourly and full-day hire, private day trips, Heathrow VIP meet & greet, plus pre-filled booking links. Public remote endpoint, no API key.MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to get fixed-price quotes and book London airport transfers, with flight validation and inter-agent communication via A2A protocol.-
- AlicenseAqualityDmaintenanceEnables booking premium private chauffeur transfers in Paris and across Europe directly from AI agents. Provides tools to list vehicles, get quotes, book rides, and retrieve service information.4MIT
- AlicenseAqualityCmaintenanceReal-time train, bus, ferry and private transfer prices between 40+ Italian cities4MIT