Sail
Server Details
Search places, compare ride-hailing options, and plan trotro minibus journeys.
- Status
- Healthy
- Uptime
- 100.0% over 22 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 5 tools
Each tool has a generally distinct role: place search/resolution, ride-hailing comparison, trotro-only planning, and multimodal planning. There is some overlap between compare_rides and plan_trip, but the descriptions clarify that compare_rides is for ride-hailing only while plan_trip is the multimodal default.
All tool names follow a consistent verb_noun pattern: compare_rides, plan_trip, plan_trotro_route, resolve_place, search_places. This makes the tool set predictable and easy to navigate.
Five tools is an appropriate size for a transit and ride-hailing planning server. Each tool serves a necessary step in the workflow without unnecessary bloat or redundancy.
The tool set covers the full journey planning flow: searching and resolving places, comparing ride-hailing options, planning trotro routes, and getting multimodal comparisons. There are no obvious dead ends or missing core operations for the stated domain.
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, openWorldHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds no extra behavioral details (e.g., pagination, response format) beyond the core multimodal comparison, which is acceptable given 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 sentences with zero redundancy. The primary purpose is front-loaded, and the default-tool note is efficient and actionable.
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 an output schema present, return values are covered. The description plus schema adequately define the tool's behavior and inputs for a read-only multimodal planner. Could mention that pickup/destination should be resolved places, but that is already implied by the placeId schema description.
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 reported as 100% (though name/address lack descriptions in the schema, the metric suggests coverage). The description does not elaborate on parameters, but the schema provides adequate meaning, 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 clearly states the tool compares ride-hailing and trotro options together, which is a specific verb+resource. It also declares itself as the default for multimodal trip planning, distinguishing it from single-mode siblings like compare_rides and plan_trotro_route.
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 frames this as the default for multimodal planning, implying use when both modes are needed. However, it does not explicitly state when to use the single-mode alternatives or provide exclusions, so it stops short of full guidance.
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 | |
| skipNote | No | |
| routeCounts | Yes | |
| routesRequiringRideConnection | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the safety profile with readOnlyHint, idempotentHint, and destructiveHint=false. The description adds useful behavioral context by listing what the produced journey plan includes, though it does not address edge cases or coverage limitations.
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 compact sentence with no filler. The core action and key content areas are front-loaded and immediately understandable.
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 full schema coverage, an output schema, and annotations covering side effects, the description is nearly complete. It could be stronger by explicitly contrasting with plan_trip, but "by trotro" carries enough differentiation for practical selection.
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% and both parameters are already documented as pickup/destination coordinates with lat/lng ranges. The description adds no parameter-level detail beyond the schema, so the baseline score of 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 opens with a specific verb and resource: "Plan public transport journeys by trotro," and enumerates concrete output components (fares, walking legs, transfers, boarding instructions). This clearly differentiates it from the general sibling plan_trip 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 mode-specific scope is clear, so an agent can infer this tool is for trotro journeys rather than general trip planning. However, it does not explicitly name alternatives or state when not to use it, which keeps it just short of full explicit guidance.
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- Changed
plan_trip1 field changed- changed
Output schema / properties / trotro / anyOfPrevious value: -[ - { - "additionalProperties": false, - "properties": { - "data": { - "additionalProperties": false, - "properties": { - "complete": { - "type": "boolean" - }, - "routeCounts": { - "additionalProperties": false, - "properties": { - "direct": { - "additionalProperties": false, - "properties": { - "returned": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "total": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "truncated": { - "type": "boolean" - } - }, - "required": [ - "total", - "returned", - "truncated" - ], - "type": "object" - }, - "rideConnection": { - "additionalProperties": false, - "properties": { - "returned": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "total": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "truncated": { - "type": "boolean" - } - }, - "required": [ - "total", - "returned", - "truncated" - ], - "type": "object" - } - }, - "required": [ - "direct", - "rideConnection" - ], - "type": "object" - }, - "routes": { - "items": { - "additionalProperties": false, - "properties": { - "complete": { - "type": "boolean" - }, - "currency": { - "type": "string" - }, - "destinationStop": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "id": { - "type": "string" - }, - "originStop": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "segmentCounts": { - "additionalProperties": false, - "properties": { - "returned": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "total": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "truncated": { - "type": "boolean" - } - }, - "required": [ - "total", - "returned", - "truncated" - ], - "type": "object" - }, - "segments": { - "items": { - "additionalProperties": false, - "properties": { - "alightAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "boardAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "currency": { - "type": "string" - }, - "fare": { - "type": "number" - }, - "routeDestination": { - "type": "string" - }, - "routeName": { - "type": "string" - } - }, - "required": [ - "boardAt", - "alightAt" - ], - "type": "object" - }, - "type": "array" - }, - "totalFare": { - "type": "number" - }, - "transferCount": { - "type": "number" - }, - "walkingDistanceFromDestinationKm": { - "type": "number" - }, - "walkingDistanceToPickupKm": { - "type": "number" - } - }, - "required": [ - "originStop", - "destinationStop", - "segments", - "segmentCounts", - "complete" - ], - "type": "object" - }, - "type": "array" - }, - "routesRequiringRideConnection": { - "items": { - "additionalProperties": false, - "properties": { - "complete": { - "type": "boolean" - }, - "currency": { - "type": "string" - }, - "destinationStop": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "id": { - "type": "string" - }, - "originStop": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "segmentCounts": { - "additionalProperties": false, - "properties": { - "returned": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "total": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "truncated": { - "type": "boolean" - } - }, - "required": [ - "total", - "returned", - "truncated" - ], - "type": "object" - }, - "segments": { - "items": { - "additionalProperties": false, - "properties": { - "alightAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "boardAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "currency": { - "type": "string" - }, - "fare": { - "type": "number" - }, - "routeDestination": { - "type": "string" - }, - "routeName": { - "type": "string" - } - }, - "required": [ - "boardAt", - "alightAt" - ], - "type": "object" - }, - "type": "array" - }, - "totalFare": { - "type": "number" - }, - "transferCount": { - "type": "number" - }, - "walkingDistanceFromDestinationKm": { - "type": "number" - }, - "walkingDistanceToPickupKm": { - "type": "number" - } - }, - "required": [ - "originStop", - "destinationStop", - "segments", - "segmentCounts", - "complete" - ], - "type": "object" - }, - "type": "array" - } - }, - "required": [ - "routes", - "routesRequiringRideConnection", - "routeCounts", - "complete" - ], - "type": "object" - }, - "status": { - "enum": [ - "complete", - "partial" - ], - "type": "string" - } - }, - "required": [ - "status", - "data" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "error": { - "additionalProperties": false, - "properties": { - "code": { - "enum": [ - "cancelled", - "timeout", - "unavailable" - ], - "type": "string" - }, - "message": { - "type": "string" - } - }, - "required": [ - "code", - "message" - ], - "type": "object" - }, - "status": { - "const": "failed", - "type": "string" - } - }, - "required": [ - "status", - "error" - ], - "type": "object" - } -]New value: +[ + { + "additionalProperties": false, + "properties": { + "data": { + "additionalProperties": false, + "properties": { + "complete": { + "type": "boolean" + }, + "routeCounts": { + "additionalProperties": false, + "properties": { + "direct": { + "additionalProperties": false, + "properties": { + "returned": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "total": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "truncated": { + "type": "boolean" + } + }, + "required": [ + "total", + "returned", + "truncated" + ], + "type": "object" + }, + "rideConnection": { + "additionalProperties": false, + "properties": { + "returned": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "total": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "truncated": { + "type": "boolean" + } + }, + "required": [ + "total", + "returned", + "truncated" + ], + "type": "object" + } + }, + "required": [ + "direct", + "rideConnection" + ], + "type": "object" + }, + "routes": { + "items": { + "additionalProperties": false, + "properties": { + "complete": { + "type": "boolean" + }, + "currency": { + "type": "string" + }, + "destinationStop": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "id": { + "type": "string" + }, + "originStop": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "segmentCounts": { + "additionalProperties": false, + "properties": { + "returned": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "total": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "truncated": { + "type": "boolean" + } + }, + "required": [ + "total", + "returned", + "truncated" + ], + "type": "object" + }, + "segments": { + "items": { + "additionalProperties": false, + "properties": { + "alightAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "boardAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "currency": { + "type": "string" + }, + "fare": { + "type": "number" + }, + "routeDestination": { + "type": "string" + }, + "routeName": { + "type": "string" + } + }, + "required": [ + "boardAt", + "alightAt" + ], + "type": "object" + }, + "type": "array" + }, + "totalFare": { + "type": "number" + }, + "transferCount": { + "type": "number" + }, + "walkingDistanceFromDestinationKm": { + "type": "number" + }, + "walkingDistanceToPickupKm": { + "type": "number" + }, + "walkingUncertaintyNote": { + "type": "string" + } + }, + "required": [ + "originStop", + "destinationStop", + "segments", + "segmentCounts", + "complete" + ], + "type": "object" + }, + "type": "array" + }, + "routesRequiringRideConnection": { + "items": { + "additionalProperties": false, + "properties": { + "complete": { + "type": "boolean" + }, + "currency": { + "type": "string" + }, + "destinationStop": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "id": { + "type": "string" + }, + "originStop": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "segmentCounts": { + "additionalProperties": false, + "properties": { + "returned": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "total": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "truncated": { + "type": "boolean" + } + }, + "required": [ + "total", + "returned", + "truncated" + ], + "type": "object" + }, + "segments": { + "items": { + "additionalProperties": false, + "properties": { + "alightAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "boardAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "currency": { + "type": "string" + }, + "fare": { + "type": "number" + }, + "routeDestination": { + "type": "string" + }, + "routeName": { + "type": "string" + } + }, + "required": [ + "boardAt", + "alightAt" + ], + "type": "object" + }, + "type": "array" + }, + "totalFare": { + "type": "number" + }, + "transferCount": { + "type": "number" + }, + "walkingDistanceFromDestinationKm": { + "type": "number" + }, + "walkingDistanceToPickupKm": { + "type": "number" + }, + "walkingUncertaintyNote": { + "type": "string" + } + }, + "required": [ + "originStop", + "destinationStop", + "segments", + "segmentCounts", + "complete" + ], + "type": "object" + }, + "type": "array" + }, + "skipNote": { + "type": "string" + } + }, + "required": [ + "routes", + "routesRequiringRideConnection", + "routeCounts", + "complete" + ], + "type": "object" + }, + "status": { + "enum": [ + "complete", + "partial" + ], + "type": "string" + } + }, + "required": [ + "status", + "data" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "error": { + "additionalProperties": false, + "properties": { + "code": { + "enum": [ + "cancelled", + "timeout", + "unavailable" + ], + "type": "string" + }, + "message": { + "type": "string" + } + }, + "required": [ + "code", + "message" + ], + "type": "object" + }, + "status": { + "const": "failed", + "type": "string" + } + }, + "required": [ + "status", + "error" + ], + "type": "object" + } +]
- Changed
plan_trotro_route3 fields changed- changed
Output schema / properties / routes / items / properties / steps / items / oneOfPrevious value: -[ - { - "additionalProperties": false, - "properties": { - "distanceMeters": { - "type": "number" - }, - "durationMinutes": { - "type": "number" - }, - "instruction": { - "type": "string" - }, - "roadCrossings": { - "items": { - "additionalProperties": false, - "properties": { - "confidence": { - "const": "high", - "type": "string" - }, - "distanceFromStartMeters": { - "minimum": 0, - "type": "number" - }, - "evidence": { - "enum": [ - "mapped-crossing", - "short-road-traversal" - ], - "type": "string" - }, - "location": { - "additionalProperties": false, - "properties": { - "lat": { - "description": "Latitude in decimal degrees", - "maximum": 90, - "minimum": -90, - "type": "number" - }, - "lng": { - "description": "Longitude in decimal degrees", - "maximum": 180, - "minimum": -180, - "type": "number" - } - }, - "required": [ - "lat", - "lng" - ], - "type": "object" - } - }, - "required": [ - "location", - "distanceFromStartMeters", - "evidence", - "confidence" - ], - "type": "object" - }, - "type": "array" - }, - "roadCrossingsTotal": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "roadCrossingsTruncated": { - "type": "boolean" - }, - "toStop": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "type": { - "const": "walk", - "type": "string" - } - }, - "required": [ - "type", - "toStop" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "alightAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "alightingRoadCrossing": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "confidence": { - "const": "high", - "type": "string" - }, - "status": { - "const": "required", - "type": "string" - } - }, - "required": [ - "status", - "confidence" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "status": { - "const": "unknown", - "type": "string" - } - }, - "required": [ - "status" - ], - "type": "object" - } - ] - }, - "boardAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "boardingRoadCrossing": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "confidence": { - "const": "high", - "type": "string" - }, - "status": { - "const": "required", - "type": "string" - } - }, - "required": [ - "status", - "confidence" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "status": { - "const": "unknown", - "type": "string" - } - }, - "required": [ - "status" - ], - "type": "object" - } - ] - }, - "currency": { - "type": "string" - }, - "fare": { - "type": "number" - }, - "instruction": { - "type": "string" - }, - "route": { - "type": "string" - }, - "stopCount": { - "type": "number" - }, - "toward": { - "type": "string" - }, - "type": { - "const": "ride", - "type": "string" - } - }, - "required": [ - "type", - "boardAt", - "alightAt" - ], - "type": "object" - } -]New value: +[ + { + "additionalProperties": false, + "properties": { + "distanceMeters": { + "type": "number" + }, + "durationMinutes": { + "type": "number" + }, + "instruction": { + "type": "string" + }, + "roadCrossings": { + "items": { + "additionalProperties": false, + "properties": { + "confidence": { + "const": "high", + "type": "string" + }, + "distanceFromStartMeters": { + "minimum": 0, + "type": "number" + }, + "evidence": { + "enum": [ + "mapped-crossing", + "short-road-traversal" + ], + "type": "string" + }, + "location": { + "additionalProperties": false, + "properties": { + "lat": { + "description": "Latitude in decimal degrees", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "lng": { + "description": "Longitude in decimal degrees", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "lat", + "lng" + ], + "type": "object" + } + }, + "required": [ + "location", + "distanceFromStartMeters", + "evidence", + "confidence" + ], + "type": "object" + }, + "type": "array" + }, + "roadCrossingsTotal": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "roadCrossingsTruncated": { + "type": "boolean" + }, + "toStop": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "type": { + "const": "walk", + "type": "string" + }, + "unverifiedEndpointMeters": { + "minimum": 0, + "type": "number" + } + }, + "required": [ + "type", + "toStop" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "alightAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "alightingRoadCrossing": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "confidence": { + "const": "high", + "type": "string" + }, + "status": { + "const": "required", + "type": "string" + } + }, + "required": [ + "status", + "confidence" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "status": { + "const": "unknown", + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + ] + }, + "boardAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "boardingRoadCrossing": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "confidence": { + "const": "high", + "type": "string" + }, + "status": { + "const": "required", + "type": "string" + } + }, + "required": [ + "status", + "confidence" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "status": { + "const": "unknown", + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + ] + }, + "currency": { + "type": "string" + }, + "fare": { + "type": "number" + }, + "instruction": { + "type": "string" + }, + "route": { + "type": "string" + }, + "stopCount": { + "type": "number" + }, + "toward": { + "type": "string" + }, + "type": { + "const": "ride", + "type": "string" + } + }, + "required": [ + "type", + "boardAt", + "alightAt" + ], + "type": "object" + } +] - changed
Output schema / properties / routesRequiringRideConnection / items / properties / steps / items / oneOfPrevious value: -[ - { - "additionalProperties": false, - "properties": { - "distanceMeters": { - "type": "number" - }, - "durationMinutes": { - "type": "number" - }, - "instruction": { - "type": "string" - }, - "roadCrossings": { - "items": { - "additionalProperties": false, - "properties": { - "confidence": { - "const": "high", - "type": "string" - }, - "distanceFromStartMeters": { - "minimum": 0, - "type": "number" - }, - "evidence": { - "enum": [ - "mapped-crossing", - "short-road-traversal" - ], - "type": "string" - }, - "location": { - "additionalProperties": false, - "properties": { - "lat": { - "description": "Latitude in decimal degrees", - "maximum": 90, - "minimum": -90, - "type": "number" - }, - "lng": { - "description": "Longitude in decimal degrees", - "maximum": 180, - "minimum": -180, - "type": "number" - } - }, - "required": [ - "lat", - "lng" - ], - "type": "object" - } - }, - "required": [ - "location", - "distanceFromStartMeters", - "evidence", - "confidence" - ], - "type": "object" - }, - "type": "array" - }, - "roadCrossingsTotal": { - "maximum": 9007199254740991, - "minimum": 0, - "type": "integer" - }, - "roadCrossingsTruncated": { - "type": "boolean" - }, - "toStop": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "type": { - "const": "walk", - "type": "string" - } - }, - "required": [ - "type", - "toStop" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "alightAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "alightingRoadCrossing": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "confidence": { - "const": "high", - "type": "string" - }, - "status": { - "const": "required", - "type": "string" - } - }, - "required": [ - "status", - "confidence" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "status": { - "const": "unknown", - "type": "string" - } - }, - "required": [ - "status" - ], - "type": "object" - } - ] - }, - "boardAt": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "lat": { - "type": "number" - }, - "lng": { - "type": "number" - }, - "name": { - "type": "string" - } - }, - "type": "object" - }, - { - "type": "null" - } - ] - }, - "boardingRoadCrossing": { - "anyOf": [ - { - "additionalProperties": false, - "properties": { - "confidence": { - "const": "high", - "type": "string" - }, - "status": { - "const": "required", - "type": "string" - } - }, - "required": [ - "status", - "confidence" - ], - "type": "object" - }, - { - "additionalProperties": false, - "properties": { - "status": { - "const": "unknown", - "type": "string" - } - }, - "required": [ - "status" - ], - "type": "object" - } - ] - }, - "currency": { - "type": "string" - }, - "fare": { - "type": "number" - }, - "instruction": { - "type": "string" - }, - "route": { - "type": "string" - }, - "stopCount": { - "type": "number" - }, - "toward": { - "type": "string" - }, - "type": { - "const": "ride", - "type": "string" - } - }, - "required": [ - "type", - "boardAt", - "alightAt" - ], - "type": "object" - } -]New value: +[ + { + "additionalProperties": false, + "properties": { + "distanceMeters": { + "type": "number" + }, + "durationMinutes": { + "type": "number" + }, + "instruction": { + "type": "string" + }, + "roadCrossings": { + "items": { + "additionalProperties": false, + "properties": { + "confidence": { + "const": "high", + "type": "string" + }, + "distanceFromStartMeters": { + "minimum": 0, + "type": "number" + }, + "evidence": { + "enum": [ + "mapped-crossing", + "short-road-traversal" + ], + "type": "string" + }, + "location": { + "additionalProperties": false, + "properties": { + "lat": { + "description": "Latitude in decimal degrees", + "maximum": 90, + "minimum": -90, + "type": "number" + }, + "lng": { + "description": "Longitude in decimal degrees", + "maximum": 180, + "minimum": -180, + "type": "number" + } + }, + "required": [ + "lat", + "lng" + ], + "type": "object" + } + }, + "required": [ + "location", + "distanceFromStartMeters", + "evidence", + "confidence" + ], + "type": "object" + }, + "type": "array" + }, + "roadCrossingsTotal": { + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" + }, + "roadCrossingsTruncated": { + "type": "boolean" + }, + "toStop": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "type": { + "const": "walk", + "type": "string" + }, + "unverifiedEndpointMeters": { + "minimum": 0, + "type": "number" + } + }, + "required": [ + "type", + "toStop" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "alightAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "alightingRoadCrossing": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "confidence": { + "const": "high", + "type": "string" + }, + "status": { + "const": "required", + "type": "string" + } + }, + "required": [ + "status", + "confidence" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "status": { + "const": "unknown", + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + ] + }, + "boardAt": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "lat": { + "type": "number" + }, + "lng": { + "type": "number" + }, + "name": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "null" + } + ] + }, + "boardingRoadCrossing": { + "anyOf": [ + { + "additionalProperties": false, + "properties": { + "confidence": { + "const": "high", + "type": "string" + }, + "status": { + "const": "required", + "type": "string" + } + }, + "required": [ + "status", + "confidence" + ], + "type": "object" + }, + { + "additionalProperties": false, + "properties": { + "status": { + "const": "unknown", + "type": "string" + } + }, + "required": [ + "status" + ], + "type": "object" + } + ] + }, + "currency": { + "type": "string" + }, + "fare": { + "type": "number" + }, + "instruction": { + "type": "string" + }, + "route": { + "type": "string" + }, + "stopCount": { + "type": "number" + }, + "toward": { + "type": "string" + }, + "type": { + "const": "ride", + "type": "string" + } + }, + "required": [ + "type", + "boardAt", + "alightAt" + ], + "type": "object" + } +] - added
Output schema / properties / skipNoteAdded value: +{ + "type": "string" +}
5 tool updates
- First observed
compare_rides - First observed
plan_trip - First observed
plan_trotro_route - First observed
resolve_place - First observed
search_places
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.
Quote and book fixed-price rides in Addis Ababa, search the BinaSmart directory and Ethiopia guides
Plan trips on a map: routed transport, day-by-day itineraries, and a plan you can share.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables comparing door-to-door travel times by bicycle, motorbike, and public transport alongside local weather, and provides place lookup and API usage tracking.4Apache 2.0
- 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.7 npmISC
- AlicenseAqualityCmaintenanceEnables public-transport journey planning, place search, realtime departures and timetables, usable from any MCP client.9MIT
- AlicenseNot gradedqualityDmaintenanceProvides real-time transit routes and arrival times for Israel, using Google Routes API, Places API, and GTFS data.2GPL 3.0
Glama MCP Gateway
Add one secure layer between your agents and this server.