Skip to main content
Glama

Create Boat Rental

create_boat_rental

Book a bareboat boat rental and get a Stripe Checkout link for the charterer to complete payment. Requires captainChoiceRightAcknowledged: true (the charterer affirms their right to choose their own captain). Optionally attach a partner/affiliate code.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes
emailYes
phoneYes
boatIdYes
lastNameYes
firstNameYes
partySizeYes
startTimeYes
durationIdYes
partnerCodeNo
pricingTierIdYes
specialRequestsNo
captainChoiceRightAcknowledgedYes

TDQS

B3/5.0
Behavior3/5

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

Annotations only say readOnlyHint=false etc., so description carries some burden. It adds that a Stripe Checkout link is returned and that an acknowledgement is mandatory, which is useful. But it does not disclose whether the boat is reserved pending payment, whether any immediate charge/deposit occurs, or cancellation/idempotency behavior.

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?

Three concise sentences, each adding distinct value: the core action, the mandatory flag, and the optional partner code. No redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 13 parameters and no output schema, this is a high-complexity tool. The description omits how to obtain key IDs (durationId, pricingTierId), what a successful response contains beyond a Stripe link, and handling of optional fields like specialRequests. Incomplete guidance for reliable invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so description must compensate. It only adds semantics for captainChoiceRightAcknowledged and partnerCode. The other 11 parameters, including opaque IDs like durationId and pricingTierId, get no added explanation about how to source or interpret them.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a clear verb+resource: books a bareboat rental and produces a Stripe Checkout link. However, it does not explicitly distinguish itself from the similar create_booking sibling, so it lacks direct sibling differentiation.

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

Usage Guidelines2/5

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

No when-to-use guidance relative to siblings like check_availability, get_quote, or create_booking. The only usage-ish note is a required parameter value (captainChoiceRightAcknowledged), which is a precondition, not a tool-selection criterion.

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

Each tool targets a distinct action or resource: availability checks, bookings (with/without captain), data retrieval for boats/captains/harbors, quotes, and searches. The descriptions clearly differentiate similar tools like create_boat_rental vs. create_booking.

Naming Consistency5/5

All tool names follow consistent verb_noun snake_case pattern (e.g., check_availability, create_booking, search_boats). No mixing of styles or ambiguous verbs.

Tool Count5/5

10 tools is well-suited for a booking platform covering search, details, quotes, and booking creation. Every tool serves a clear purpose without redundancy.

Completeness4/5

The core booking workflow (search, check availability, quote, create) is fully covered. Missing tools for viewing existing bookings or cancellations, but these are minor gaps for a public-facing API.

Resources