Sail
Server Details
Search places, compare ride-hailing options, and plan trotro minibus journeys.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolscompare_ridesCompare ridesBRead-onlyIdempotentInspect
Compare current ride-hailing prices and pickup times from the providers available through Sail.
| Name | Required | Description | Default |
|---|---|---|---|
| pickup | Yes | Resolved pickup place | |
| destination | Yes | Resolved destination place |
Output Schema
| Name | Required | Description |
|---|---|---|
| options | Yes | |
| complete | Yes | |
| optionCounts | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context via 'current' (indicating live, time-sensitive pricing) and 'through Sail' (provider scope), but does not disclose ordering, currency, or failure handling. With annotations this is an acceptable level of transparency.
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 a single, tightly-worded sentence that front-loads the action and includes the resource, scope, and time-sensitivity. There is no filler or repetition of the title.
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 read-only comparison tool with rich input schema, annotations, and an output schema, the description provides sufficient context about what the tool does and what data it returns. Minor gaps remain around when to use it versus plan_trip and how the resolved places should be obtained, but these are largely inferable from sibling names and schema descriptions.
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, documenting lat/lng ranges, placeId provenance, and the required pickup/destination objects. The description adds no additional parameter-level detail, but none is needed given the thorough schema.
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 states a clear action ('Compare'), a specific resource ('current ride-hailing prices and pickup times'), and a scope ('providers available through Sail'). It does not explicitly contrast itself with sibling tools like plan_trip or plan_trotro_route, so it stops short of full sibling differentiation.
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 implies when to use the tool—when comparing ride-hailing options—but gives no explicit guidance on when to choose it over siblings, nor does it mention exclusions or prerequisites. An agent must infer the appropriate usage from the name and the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_tripPlan a tripARead-onlyIdempotentInspect
Compare ride-hailing and trotro options together. This is the default tool for multimodal trip planning.
| Name | Required | Description | Default |
|---|---|---|---|
| pickup | Yes | Resolved pickup place | |
| destination | Yes | Resolved destination place |
Output Schema
| Name | Required | Description |
|---|---|---|
| rides | Yes | |
| status | Yes | |
| trotro | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no additional behavioral context such as output structure, data sources, or side effects; it mostly restates the tool's purpose without contradicting the 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 concise sentences with no filler: the first states the core function, and the second adds important selection guidance by labeling the tool as the default multimodal option. Frontal loading is effective.
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?
The schema is detailed, output schema exists, and annotations cover the safety profile, so the description does not need to explain return values or side effects. The only minor gap is that it does not explicitly route the agent to single-mode siblings, but the sibling list and 'multimodal' language make that omission non-critical.
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 description coverage is 100%, with pickup and destination documented as 'Resolved pickup place' and 'Resolved destination place' and lat/lng ranges explained. The description adds no parameter-level meaning beyond what the schema already provides, so the baseline of 3 applies.
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 uses a specific verb plus resource: 'Compare ride-hailing and trotro options together.' It clearly identifies the tool as the multimodal trip planner and distinguishes it from siblings like compare_rides and plan_trotro_route, which are single-mode alternatives.
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 phrase 'This is the default tool for multimodal trip planning' gives clear context for when to choose it, especially relative to single-mode siblings. However, it does not explicitly state when not to use it or name the alternatives for ride-hailing-only or trotro-only requests.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_trotro_routePlan a trotro routeARead-onlyIdempotentInspect
Plan public transport journeys by trotro, including fares, walking legs, transfers, and boarding instructions.
| Name | Required | Description | Default |
|---|---|---|---|
| pickup | Yes | Pickup coordinates | |
| destination | Yes | Destination coordinates |
Output Schema
| Name | Required | Description |
|---|---|---|
| routes | Yes | |
| complete | Yes | |
| routeCounts | Yes | |
| routesRequiringRideConnection | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe/read-only behavior is covered. The description adds value by disclosing what the returned plan includes—fares, walking legs, transfers, and boarding instructions—which gives the agent useful expectations beyond the 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?
The description is a single well-structured sentence that front-loads the action and resource, then packs in relevant specifics without any filler. Every phrase 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 rich annotations, full schema coverage, and the presence of an output schema, the description is largely complete for correct invocation. It could be slightly stronger with an explicit distinction from plan_trip or mention of trotro-specific limitations, but nothing essential is missing.
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 description coverage is 100%, with pickup and destination both fully documented as lat/lng coordinate objects. The description does not add parameter-level detail, but it does not need to because the schema already carries the semantic weight.
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 uses a specific verb ('Plan') and resource ('public transport journeys by trotro'), and adds concrete detail about what the plan includes: fares, walking legs, transfers, and boarding instructions. This clearly distinguishes it from siblings like plan_trip and compare_rides by specifying the trotro mode.
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 implies it should be used when the user wants trotro-based public transport planning, but it does not explicitly state when to choose this over plan_trip or when not to use it. No alternatives or exclusions are named, leaving some inference to the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_placeResolve placeARead-onlyIdempotentInspect
Resolve a place ID from search_places to an exact name, address, and coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| placeId | Yes | Place ID returned by search_places |
Output Schema
| Name | Required | Description |
|---|---|---|
| place | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds the resolution output contents but does not disclose error handling or behavior for invalid IDs; this is minor given the concise scope and strong 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?
A single sentence that front-loads the action and input, then immediately states the output fields. There is no filler, redundancy, or unnecessary detail.
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 only one parameter, an output schema available, and annotations covering side effects, the description fully covers the input origin, purpose, and output shape. Nothing an agent needs to call it correctly is missing.
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 description coverage is 100%: the placeId property is already documented as 'Place ID returned by search_places'. The description repeats this origin without adding additional parameter semantics beyond the schema.
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 uses a specific verb ('Resolve') with a clear resource ('place ID from search_places') and enumerates the output (exact name, address, coordinates). It clearly differentiates this from sibling tools like search_places, which finds candidates, and trip-planning tools.
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 phrase 'from search_places' explicitly establishes the input source and implies the intended workflow: call search_places first, then resolve a selected ID. It does not explicitly state when not to use it or name alternatives, but the contextual chain is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_placesSearch placesARead-onlyIdempotentInspect
Search for pickup or destination places. Use resolve_place on the selected result before planning a trip.
| Name | Required | Description | Default |
|---|---|---|---|
| near | No | Coordinates used to bias nearby results | |
| query | Yes | Place name or address | |
| countryCode | No | gh | |
| radiusMeters | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| places | Yes | |
| complete | Yes | |
| placeCounts | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior, so the description does not need to repeat those. The description adds no extra behavioral detail, such as result limits or ordering, but it also does not contradict the annotations. This is adequate given the annotation coverage.
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 two short sentences with no filler. It front-loads the core action and then adds a necessary workflow pointer, making every word earn 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 output schema and annotations, the description covers the essential workflow purpose and next step. Minor gaps remain around default country filtering and radius meaning, but these are partially inferable from the schema defaults and are not critical for correct invocation.
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 coverage is only 50%, with query and near's lat/lng described but countryCode and radiusMeters left undocumented. The description does not compensate for these gaps by explaining defaults, radius meaning, or country filtering behavior. An agent would need to infer the semantics of countryCode='gh' and radiusMeters without additional guidance.
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 states a specific verb ('Search') and a clear resource ('pickup or destination places'). It also references the downstream workflow step, which distinguishes it from sibling tools like resolve_place and plan_trip.
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 explicitly says to use resolve_place on the selected result before planning a trip, giving clear sequential context. It does not enumerate when to avoid this tool, but the workflow guidance is meaningful and sufficient for basic routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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 rides, get fare estimates, and manage trips across African cities with Rovv.
Plan journeys by train, bus, tram, metro and ferry across 42 European countries.
Plan trips on a map: routed transport, day-by-day itineraries, and a plan you can share.
Plan door-to-door trips across French trains, buses, transit and flights.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables searching for buses and trains, and when direct routes are unavailable, it provides the underlying data needed to assemble multi-leg itineraries with transfers.4ISC
- AlicenseNot gradedqualityDmaintenanceProvides real-time transit routes and arrival times for Israel, using Google Routes API, Places API, and GTFS data.2GPL 3.0
- FlicenseNot gradedqualityFmaintenanceSearch flights, compare prices, check visas, look up airports, get travel advisories through a single endpoint.
- AlicenseBqualityDmaintenanceProvides real-time Transport for London journey data, including routes, alerts, and disruptions, allowing AI assistants to search journeys and get station information.1264ISC
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct action: searching places, resolving a place, comparing ride-hailing, planning trotro-only trips, and comparing all modes together. Even where plan_trip overlaps with the mode-specific planners, the descriptions clearly position it as the multimodal default.
All tool names follow a consistent verb_noun snake_case pattern: compare_rides, plan_trip, plan_trotro_route, resolve_place, search_places. The naming is predictable and makes the purpose of each tool immediately clear.
Five tools is a well-scoped set for a ride-hailing and public transport comparison server. Each tool covers a necessary step in the workflow without redundancy or bloat.
The tool surface covers the full journey from place search and resolution through mode-specific and multimodal trip planning. There are no obvious dead ends or missing operations for the server's stated purpose of comparing and planning trips.