Canal Nav
Server Details
Plan canal routes on Great Britain's waterways: lock-aware timing, live closures, boat-fit checks.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 6 of 6 tools scored.
Each tool targets a distinct aspect of canal navigation: place lookup, closures, route planning, round trip planning, business directory, and boat fit checks. There is no overlap in purpose, so an agent can reliably select the right tool.
Most tools follow a verb_noun pattern (find_place, get_closures, plan_route, plan_round_trip, search_directory). 'will_my_boat_fit' is a question-phrase rather than a standard verb_noun, but it is still clear and stylistically consistent (lowercase with underscores).
Six tools is well within the ideal range for a focused domain. Each tool is non-trivial and earns its place; there are no redundant or filler tools.
The tool set covers the full lifecycle of planning a canal trip: locating places, checking closures, planning both one-way and round trips, validating boat dimensions, and finding waterside services. There are no obvious dead ends or missing core operations.
Available Tools
6 toolsfind_placeFind a place on the waterwaysAInspect
Look up a place name on the British inland waterway network and return matching locations with coordinates (marinas, moorings, water points and other waterside facilities). Use it to disambiguate a place before calling plan_route or plan_round_trip, or to get coordinates for a known spot. Results are waterway locations only; it is not a general geocoder.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Place or facility name to search for, e.g. "Braunston" or "Aston Marina". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and discloses key behavioral facts: it returns matching locations with coordinates, covers marinas/moorings/water points/other waterside facilities, and is limited to waterway locations. It does not mention edge cases like no results or result limits, but for a simple lookup it provides sufficient 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 three sentences, with the primary purpose first, practical usage second, and a scope-limiting caveat third. Every sentence adds value and there is no repetition or filler.
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?
This is a simple one-parameter lookup tool with no output schema, so the description's mention of returning coordinates and facility types provides reasonable expectations. It also situates the tool within the larger workflow by referencing plan_route and plan_round_trip, making it complete for its low complexity.
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 schema already fully describes the single 'name' parameter with examples, and schema description coverage is 100%, so the description adds limited extra semantics. The description reinforces that the name is a place or facility name on the waterways, which is useful but not a major addition 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 ('Look up') and a clear resource ('place name on the British inland waterway network'), and it states the return value ('matching locations with coordinates'). It also distinguishes itself from siblings by explicitly noting it is not a general geocoder, differentiating it from tools like search_directory.
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 concrete use cases: disambiguating a place before plan_route or plan_round_trip, and getting coordinates for a known spot. It also states a clear when-not ('not a general geocoder'), though it does not name an alternative tool for general geocoding, so it stops short of full alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_closuresGet closures and stoppagesAInspect
Live closure, stoppage and restriction notices for the inland waterways of Great Britain, covering every GB navigation authority: Canal & River Trust, Environment Agency, Scottish Canals, Broads Authority, Bridgewater, Middle Level, River Wey, Basingstoke and more, not just CRT. Search near a place (name or "lat,lon", with an optional radius) or by waterway name (e.g. "Oxford Canal"). Returns active and upcoming notices with dates, the responsible authority, whether each one blocks navigation, and links for detail. Data refreshes from the authorities' published notices, so reopen dates reflect the latest updates.
| Name | Required | Description | Default |
|---|---|---|---|
| place | No | A place name or "lat,lon" coordinates to search around. Give this or waterway. | |
| waterway | No | A waterway name to match notices against (e.g. "Grand Union Canal"). Give this or place. | |
| radius_km | No | Search radius around the place in km. Default 25. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the data source freshness (refreshes from published notices), the nature of returned data (active and upcoming notices with dates, authority, navigation-blocking status, links), and implies this is a read-only operation. It doesn't mention error handling or pagination, but the covered traits are meaningful.
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, somewhat dense paragraph, but every sentence contributes: scope, search options, return contents, and data refresh policy. It could be improved with bullet points for scannability, but it remains concise and information-dense without fluff.
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 there is no output schema and no annotations, the description covers the essential context: what data is returned, how to search, and the freshness of the data. It doesn't fully cover edge cases like empty results or maximum radius behavior, but for a straightforward lookup tool, it is largely complete and well contextualized.
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?
While the schema already documents all three parameters (100% coverage), the description adds critical usage semantics by clarifying that place and waterway are mutually exclusive ('Give this or waterway'), explaining the coordinate format ('lat,lon'), and noting the optional radius with a default. This enriches the parameter understanding 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 explicitly states the tool returns live closure, stoppage, and restriction notices for British waterways, lists specific authorities to emphasize broad coverage, and contrasts with a common assumption (not just CRT). It also names the search methods and return contents, making its purpose unmistakable and distinct from sibling tools like plan_route or find_place.
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 search instructions: by place (name or lat,lon) with optional radius, or by waterway name. It also highlights coverage across all navigation authorities, which helps when to prefer this over a more limited tool. However, it doesn't explicitly mention when not to use it or contrast with alternatives, 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.
plan_round_tripPlan a round tripAInspect
Plan return-to-start cruises from a point on the inland waterways of Great Britain, sized to fit a number of days. Returns several options: circular loops where the canal network offers one (canal "rings"), plus out-and-back and fewest-locks alternatives, each with distance, lock count, day-by-day plan and suggested overnight moorings. Timing is lock-aware and closures from every GB navigation authority are flagged on each option. Give boat dimensions to get fit warnings, and routes touching tidal water carry a tidal safety warning. The start can be a place name or "lat,lon" coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Start date (YYYY-MM-DD) for closure checking. Defaults to today. | |
| days | Yes | Number of days the round trip should fit in. | |
| start | Yes | Start (and finish) point: a place name on the waterways or "lat,lon" coordinates. | |
| boat_beam | No | Boat beam (width). Metres by default (e.g. 2.08), or feet/inches (e.g. "6'10\""). | |
| boat_length | No | Boat length. Metres by default (e.g. 17.4), or a feet/inches string (e.g. "57ft"). | |
| boat_draught | No | Boat draught (depth below the waterline). Metres or feet/inches. | |
| lock_minutes | No | Minutes to work through one lock. Default 15. | |
| boat_air_draught | No | Boat air draught (height above the waterline, for bridges and tunnels). Metres or feet/inches. | |
| cruising_hours_per_day | No | Cruising hours per day. Default 6. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It goes beyond a basic summary by disclosing output variety (rings, out-and-back, fewest-locks), detailed output attributes (distance, lock count, day-by-day plan, moorings), and safety/timing behaviors (lock-aware timing, closures flagged, fit warnings, tidal warnings). This is rich behavioral context.
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 four sentences, each contributing unique information. It is front-loaded with the core purpose, then details options, safety aspects, and input flexibility. No redundancy or fluff.
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 (9 parameters, no output schema), the description provides thorough contextual completeness. It explains the key return values (options, distances, plans, warnings) and covers safety considerations. The only omission is error handling, but that is not essential for tool selection and 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 100%, so all 9 parameters are already described. The description adds value by explaining that boat dimensions trigger fit warnings and that lock-aware timing relates to lock_minutes, which enhances understanding of the parameters' purpose. Baseline 3 raised to 4 for this added context.
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: planning return-to-start cruises on GB inland waterways, sized by days. It distinguishes itself from siblings by explicitly mentioning circular loops (rings), out-and-back, and fewest-locks alternatives, which are unique to round-trip planning. The verb 'plan' and resource 'round trips' are specific.
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 implicitly differentiates this tool from plan_route by focusing on round trips, indicating when to use it. However, it does not explicitly say 'use this instead of plan_route when you need a return-to-start trip' or provide exclusions. The context is clear but not explicit about alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_routePlan a canal routeAInspect
Plan a boat journey between two points on the inland waterways of Great Britain (canals and navigable rivers). The route follows the water itself, not roads. It counts every lock and estimates cruising time from realistic boat speed plus time per lock. Live closures and stoppages from every GB navigation authority (Canal & River Trust, Environment Agency, Scottish Canals, Broads Authority and others) are routed around automatically, and when a dated closure blocks the natural line the result compares waiting for it to reopen against taking the detour. Give boat dimensions to get per-waterway fit warnings (too long, too wide, too deep, too tall for a waterway on the route). Routes that cross tidal water carry a tidal safety warning. Places can be names (resolved on the waterway network) or "lat,lon" coordinates. If a name matches several distinct locations the tool returns the candidates instead of guessing; call again with the chosen one.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Destination: a place name or "lat,lon" coordinates. | |
| date | No | Departure date (YYYY-MM-DD) for closure checking. Defaults to today. | |
| from | Yes | Start point: a place name on the waterways (e.g. "Braunston Marina") or "lat,lon" coordinates. | |
| boat_beam | No | Boat beam (width). Metres by default (e.g. 2.08), or feet/inches (e.g. "6'10\""). | |
| boat_length | No | Boat length. Metres by default (e.g. 17.4), or a feet/inches string (e.g. "57ft"). | |
| boat_draught | No | Boat draught (depth below the waterline). Metres or feet/inches. | |
| lock_minutes | No | Minutes to work through one lock. Default 15. Experienced crews may use 10, single-handers 20 or more. | |
| boat_air_draught | No | Boat air draught (height above the waterline, for bridges and tunnels). Metres or feet/inches. | |
| cruising_hours_per_day | No | Cruising hours per day, used to split the journey into days with suggested overnight moorings. Default 6. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and fully delivers. It discloses that routes follow water not roads, counts locks, estimates time, automatically routes around closures, compares waiting vs. detour, gives per-waterway fit warnings, includes tidal safety warnings, and returns candidates on ambiguous names. This is rich behavioral disclosure.
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 long but every sentence earns its place. It is front-loaded with the primary purpose, then systematically covers routing behavior, closures, boat limits, tidal warnings, and input formats. No fluff or repetition; the structure is logical and dense.
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 (9 parameters, no output schema), the description is comprehensive. It explains core behavior, closure handling, detour comparison, fit warnings, tidal warnings, and input ambiguity. It doesn't explicitly describe the response format (e.g., list of waypoints, but it mentions 'returns the candidates' and 'the result compares waiting'), so a 4 is appropriate rather than a 5.
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 100%, so the baseline is 3. The description adds value beyond schema by explaining why boat dimensions matter ('Give boat dimensions to get per-waterway fit warnings') and how place names or coordinates are interpreted, including the ambiguity behavior. These insights complement the schema's field-level descriptions.
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 clear, specific verb and resource: 'Plan a boat journey between two points on the inland waterways of Great Britain.' It distinguishes itself from siblings by focusing on journey planning, while siblings like 'find_place' or 'get_closures' serve different purposes. The scope (canals and navigable rivers) is explicit.
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 provides clear context for when to use the tool (planning a boat journey, with lock counting, closures, boat-dimension checks, and tidal warnings). However, it doesn't explicitly mention alternatives or exclusions (e.g., when to use will_my_boat_fit instead), so it stops short of a 5. The guidance is implicit in the feature list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_directorySearch the waterways business directoryAInspect
Search Canal Nav's directory of waterside businesses on the British inland waterways: marinas, chandleries, boat hire, boatyards, pump-out and services, fuel, moorings, surveyors, brokerage, and canalside food and pubs. Filter by free text, category, or proximity to a place. Listings marked unclaimed can be claimed for free by the business owner at https://canalnav.com/.
| Name | Required | Description | Default |
|---|---|---|---|
| near | No | A place name or "lat,lon" to search around (approx. 15 km). | |
| query | No | Free-text search over business names and descriptions. | |
| category | No | Directory category to filter by. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It adds useful behavioral context: the geographic scope (British inland waterways), the proximity radius is implied by the schema's 'approx. 15 km' note, and it discloses the unclaimed-listing claim feature with a URL. It doesn't describe result format or pagination, but for a straightforward search tool, this is reasonable.
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, front-loads the core action, and uses a bullet-like list for categories. The list is long but informative. The final sentence about unclaimed listings is somewhat tangential but still relevant to what the results may contain. It is efficiently written without significant waste.
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 no output schema, the description reasonably sets expectations about what is searched and what types of results to expect (business listings with an unclaimed marker possibility). It covers the geographic scope, filtering options, and a special feature. It omits details like sorting or result count, but those are not essential for a search tool at this tier.
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 100%, so the schema already documents all parameters. The description mentions 'free text, category, or proximity to a place' which maps to query, category, and near, but adds no new detail beyond the schema's property descriptions. It earns the baseline 3, not higher.
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 begins with a specific verb and resource: 'Search Canal Nav's directory of waterside businesses on the British inland waterways.' It enumerates concrete business categories and clearly distinguishes itself from sibling tools (find_place, route planning, closures), which serve different purposes.
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 states the search scope and available filters ('Filter by free text, category, or proximity to a place'), giving clear context for when to use this tool. It does not explicitly name sibling alternatives or exclusion criteria, but the context is sufficient for an agent to know when search_directory is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
will_my_boat_fitWill my boat fit a waterwayAInspect
Check boat dimensions against the published maximum craft dimensions for a named British waterway (length, beam, draught and air draught, from Canal & River Trust published figures covering the full CRT network). Returns a per-dimension verdict quoting the limit. Draught and headroom vary with water level and silting, so treat the answer as advisory. For a whole journey, use plan_route with boat dimensions instead: it checks every waterway along the route.
| Name | Required | Description | Default |
|---|---|---|---|
| waterway | Yes | Waterway name, e.g. "Ashby Canal" or "Llangollen Canal". | |
| boat_beam | No | Boat beam (width). Metres by default (e.g. 2.08), or feet/inches (e.g. "6'10\""). | |
| boat_length | No | Boat length. Metres by default (e.g. 17.4), or a feet/inches string (e.g. "57ft"). | |
| boat_draught | No | Boat draught (depth below the waterline). Metres or feet/inches. | |
| boat_air_draught | No | Boat air draught (height above the waterline, for bridges and tunnels). Metres or feet/inches. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the answer is advisory and why, and states that it returns a per-dimension verdict quoting the limit. However, it does not describe behavior for partially provided dimensions or invalid waterway names, which is a minor gap.
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+source, output behavior, and caveat+alternative. It is concise, front-loaded, and every sentence adds value without redundancy.
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 description covers what the tool does, what it returns (per-dimension verdict with limit), the advisory nature, and the alternative for journeys. No output schema exists, so the return description adequately covers that. For a simple query tool, the description is 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?
Schema coverage is 100%, so the schema already describes each parameter. The description adds context that the tool checks all four dimensions and that they are from CRT published figures, but it does not add additional semantics beyond the schema's parameter descriptions. Baseline 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 the specific verb 'Check' and clearly identifies the resource: 'boat dimensions against the published maximum craft dimensions for a named British waterway' (length, beam, draught and air draught). It further distinguishes itself from the sibling tools by explicitly recommending plan_route for whole journeys.
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 states when to use the tool (for a single named waterway) and when not to (for a whole journey, use plan_route instead). It also advises treating the answer as advisory due to varying draught and headroom, providing clear context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- Alicense-qualityAmaintenanceAI-powered route optimization MCP server for heavy vehicles and logistics. Calculate truck-optimized routes, predict traffic congestion with LSTM neural networks, compute toll costs, fuel costs and CO2 emissions, find truck stops and check weather along any European route.Last updatedMIT
- Alicense-qualityBmaintenanceProvides BS 7121 lift-plan compliance for UK crane and hiab operators including clause lookup, lift classification, CPA hire vs contract-lift triage, and LOLER scheduling.Last updatedMIT
- AlicenseBqualityDmaintenanceProvides real-time Transport for London journey data, including routes, alerts, and disruptions, allowing AI assistants to search journeys and get station information.Last updated1444ISC
- Flicense-qualityCmaintenanceProvides live UK rail data including station search, departures, arrivals, service details, and pre-filled Trainline booking links.Last updated