Skip to main content
Glama

Search scheduled sea transport

sailing_search
Read-onlyIdempotent

Searches scheduled ferry and fast-boat departures between two places on a given date, returning departure and arrival times, operator, vessel, journey duration, remaining seats and fares. Origin and destination accept a harbor name, a destination-region name, a slug, or an identifier from locations_list; at least one side must be given.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
adultNo
childNo
limitNo
infantNo
originNoDeparture harbor or region — name, slug, or identifier.
destinationNoArrival harbor or region — name, slug, or identifier.
nationalityNoFare band. Indonesian residents are priced separately.
return_dateNoOptional return date, YYYY-MM-DD.
travel_dateNoDeparture date, YYYY-MM-DD.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesParameters the search actually ran with, after resolution.
totalNo
resultsYes
returnedYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false. The description adds value by disclosing input flexibility (harbor name, region name, slug, identifier) and the rule that at least one side is required. This complements the structured annotations without contradiction.

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 two sentences, front-loaded with the core purpose and immediate return-value expectations. Every sentence adds operational detail; there is no fluff or repetition of schema information.

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 (9 parameters, optional inputs, output schema), the description provides sufficient context: what is searched, what is returned, allowed input formats, and an edge-case constraint. The output schema covers return formatting, so this description is complete enough for an agent to invoke correctly.

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 56%, so the description partially compensates. It clarifies that origin and destination accept multiple formats and that at least one must be provided, which is not evident from the schema alone. It also explains that nationality affects fare band. However, it does not elaborate on adult/child/infant/limit parameters beyond their schema types.

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 uses a specific verb ('Searches') and clearly identifies the resource ('scheduled ferry and fast-boat departures between two places on a given date'). It lists concrete return fields (times, operator, vessel, duration, seats, fares), which distinguishes it from sibling tools like charter_search and fishing_search that target different types of transport.

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 this tool (scheduled sea transport) and states an important constraint ('at least one side must be given'). It also references locations_list as a source for identifiers, implying a workflow. However, it does not explicitly mention when not to use it or directly contrast it with alternatives.

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
Disambiguation4/5

The tools are mostly distinct: charter_search, fishing_search, and sailing_search target different travel products, while locations_list is a lookup helper. However, fishing_search is explicitly a subcategory of charter_search, which could cause minor confusion if an agent doesn't read the details.

Naming Consistency5/5

All tool names follow a consistent noun_verb pattern with lowercase and underscores: charter_search, fishing_search, locations_list, sailing_search. The only deviation is the verb 'list' instead of 'search', but the pattern remains predictable and readable.

Tool Count5/5

With four tools, the server is well-scoped for a search-focused maritime travel API. Each tool serves a clear purpose without redundancy or bloat, making it easy for an agent to navigate.

Completeness2/5

The tool surface only covers searching and listing; there are no booking, reservation, or purchase capabilities, which is a significant gap for a service named Sailtix. After finding an option, the agent cannot complete any transaction, leading to dead ends.

Resources