uktrains
Provides UK train journey search, fare comparison, and pre-filled booking links to National Rail Enquiries.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@uktrainsfind trains from London to Manchester departing after 9am tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
uktrains
An agent-first UK train journey CLI and stdio MCP server. It's built for a personal LLM agent to search journeys, compare fares, and hand the human a pre-filled booking link — the tool never takes payment and never claims a booking was made. Fulfilment means one thing: a correct, pre-filled retailer checkout link the human taps to pay.
JSON is the default output everywhere (CLI and MCP alike); pass --pretty
on the CLI for a human-readable, indented rendering instead of raw JSON.
What it does today
Resolves UK station names/aliases to CRS codes, including group stations ("Manchester", "London").
Builds a journey intent from
--from/--toplus--depart-afteror--arrive-by(and the return-leg equivalents), and produces a pre-filled National Rail Enquiries journey planner booking link — the only live provider today (see "Capability tiers" below for the dormant Trainline provider). A return leg witharrive-byis flagged with a note: NRE's URL can't pre-fill that constraint on the return leg, so it's pre-filled as depart-after and the caller should verify the return train actually arrives by the deadline on the retail page.At Tier 1, fetches BR Fares flow-level fares (railcard-aware), sorted by price (the
cheapest/fastest/balancedrankBymodes are accepted today but don't change ordering yet — journey-level ranking arrives with Tier 2), including return-vs-two-singles comparison.doctorreports which tier is active. The BR Fares key is validated live; the RDM key is only reported as stored (its live validation arrives with Tier 2, perdoctor's own output).setupwalks an agent (or a human) through the two optional signups.
live (CLI) and live_status (MCP) exist as structured stubs today — they
return a TIER_UNAVAILABLE error rather than pretending to have live data.
If both keys are already stored, the recovery text says plainly that live
departures aren't implemented in this build yet (pointing back at setup
would be a dead end); otherwise it points at uktrains setup to unlock
Tier 2. Live departures/delays and richer in-tool journey planning land in a
later plan (Tier 2).
Related MCP server: hafasmcp
Capability tiers
No free API combines journey planning with fares, and Darwin live data requires a Rail Data Marketplace account with human approval — so the tool degrades gracefully instead of demanding setup upfront.
Tier | Requires | Unlocks |
0 | Nothing (bundled station data) | Station resolution, journey intent construction, a pre-filled National Rail Enquiries booking link. The core "get me a train" flow works the moment you build it — the human sees times and fares on the retail page. |
1 | BR Fares API key (free, non-commercial, ~minutes to register, 100 calls/day) | In-tool fare quotes with railcard discounts, sorted by price — the |
2 | RDM account + "LDBWS – Public" subscription (free, 1–3 day approval) | Live departures, delays, platforms, cancellations; real in-tool journey planning with a realtime overlay. Not implemented yet — arrives in the next plan. |
Run uktrains doctor at any time to see the active tier and exactly what's
missing to reach the next one.
National Rail Enquiries is the sole live booking-link provider today.
The code also carries a Trainline provider, but it's dormant: a Trainline
link needs a verified station-ID mapping (URN) for BOTH the origin and
destination, and data/trainline-urns.json currently has exactly one
verified entry (KGX) — so no station pair can produce a Trainline link yet.
The code path and its fixture-backed tests stay in place for when more URNs
get recorded; until then, expect NRE-only links.
Install
For agents
If you are an LLM agent: read AGENTS.md — it is written for you and covers install, MCP registration, setup shepherding, and how to present options to your human.
git clone https://github.com/aaryan-gulia/uktrains.git
cd uktrains
npm install
npm run buildThe built CLI is at dist/cli/index.js and runnable directly:
node dist/cli/index.js search --from KGX --to YRK --depart-after 2031-08-01T09:00:00+01:00Or invoke it via npx once linked/published, or point an MCP client at the
built entry point (below) — no global install required.
For humans
Same steps, then optionally npm link (or install globally once published)
so the uktrains command is on PATH.
Requires Node.js 22.12+ (commander@15's own floor).
MCP client config
If uktrains is on PATH (e.g. via npm link):
{
"command": "uktrains",
"args": ["mcp"]
}From a source checkout, without installing globally:
{
"command": "node",
"args": ["/absolute/path/to/uktrains/dist/cli/index.js", "mcp"]
}The server exposes four tools: search_journeys, get_booking_link,
live_status (Tier 2 stub), and lookup_station. Tool descriptions are
normative — they tell the calling agent, for example, that arriveBy is a
station arrival time and that the agent is responsible for adding transit
and buffer time to the actual appointment.
CLI examples
# Search a journey (JSON by default; --pretty for a human-readable rendering)
uktrains search --from KGX --to YRK --depart-after 2031-08-01T09:00:00+01:00 --pretty
# Same, but restrict fares to a railcard (fares are always price-sorted;
# --rank-by is accepted but doesn't change ordering yet — see "Capability tiers")
uktrains search --from "London" --to "Manchester" \
--depart-after 2031-08-01T09:00:00+01:00 \
--railcard 16-25 --rank-by cheapest
# Booking links only, no fare lookup
uktrains link --from KGX --to YRK --depart-after 2031-08-01T09:00:00+01:00
# Resolve a station name or CRS code
uktrains stations york
# Agent-drivable setup: machine-readable next steps for both signups
uktrains setup --json
# Store a key once the human has completed a signup
uktrains setup --set brfares=<key>
# Check active tier and validate configured keys
uktrains doctorAll time flags (--depart-after, --arrive-by, --return-depart-after,
--return-arrive-by) take ISO-8601 timestamps and require an explicit
timezone offset (e.g. 2031-08-01T09:00:00+01:00 or Z). Offset-less
times are rejected with a structured INVALID_INPUT error — silently
guessing a timezone produces silently wrong booking links.
A time may not be in the past (a time more than ~60 seconds behind the
server's clock is rejected as INVALID_INPUT); a stamp generated as "right
now" — including minute-precision ISO-8601, which truncates to the current
minute — is tolerated even though a few hundred milliseconds elapse between
generating it and validating it.
--adults <n> (CLI) / adults (MCP search_journeys/get_booking_link)
sets the produced booking link's adults= query param — an integer from 1
to 9, default 1. It does NOT change any quoted fare: BR Fares quotes are
always PER PASSENGER, never multiplied or annotated by party size — for
adults > 1, search/search_journeys adds a note reminding the caller
to multiply the quote for the total, and link/get_booking_link adds a
note confirming only the link (not a fare) reflects the passenger count.
Setup walkthrough
uktrains setup --json (the default) prints machine-readable steps so an
agent can shepherd the human through both signups in the background, while
Tier 0 already delivers working booking links:
BR Fares (Tier 1) — open
https://www.brfares.com/api/login.html, register a free non-commercial account, obtain an API key, then runuktrains setup --set brfares=<key>.Rail Data Marketplace (Tier 2, live data — not yet consumed by this build) — open
https://raildata.org.uk, create an individual account (approval typically takes 1–3 working days), subscribe to the free "LDBWS – Public" product, then runuktrains setup --set rdm=<key>.
Config is stored at ~/.config/uktrains/config.json and holds only
rail-domain state: API keys, railcards, and ranking preferences. No home
station, no calendar integration — the calling agent already knows that.
If the config file exists but part of it fails to parse (a corrupted
keys or prefs section), that section is silently defaulted so the tool
still answers — but every CLI/MCP result, success or error, carries a
sibling configWarning: string field naming what happened, so a
corrupted config is never invisible. (One shape exception: setup --json's
output is a bare array, so configWarning is written to stderr as its own
JSON line instead of being folded into stdout.)
setup --set also accepts a --force flag, for two situations: (1) BR
Fares key validation failed because the NETWORK request itself failed (not
because the key was rejected) — --force stores the value unvalidated
instead of refusing to save a possibly-good key; (2) the on-disk config
did not load CLEANLY, for any of these reasons — --force allows the
overwrite that would otherwise be refused (the old file is backed up to
<path>.bak first when it can still be read):
the file isn't valid JSON at all
the file's top-level JSON is valid but isn't an object (an array, string, number, or
null)the file exists but can't be read (permissions, etc.)
the
keyssection fails its schema and would be reset to empty — even whenprefsis finethe
prefssection fails its schema and would be reset to defaults — even whenkeysis fineboth
keysandprefsfail together
In every one of these, writing without --force would silently discard
whatever was still on disk in the failing section(s) (which may include a
stored API key), so setup --set refuses by default. Without --force,
setup --set refuses and reports which of the above happened.
Attribution and licensing notes
The two link-bearing results —
search/search_journeysandlink/get_booking_link— carry "Powered by National Rail Enquiries" per NRE's OGL terms.stations/lookup_station,live/live_status,setup,doctor, and error envelopes on either surface carry no attribution (there is no NRE-derived data in those results to attribute).Each user brings their own API keys. RDM and BR Fares agreements are per-account — this tool never shares keys, and never redistributes the per-account data those keys unlock (fares, live departures).
Station data is ODbL, not MIT. The bundled dataset (
data/stations.json, regenerated byscripts/fetch-stations.ts) is derived from davwheat/uk-railway-stations, itself derived from the Trainline EU stations dataset, and is distributed under the Open Database License (ODbL) v1.0 with attribution to David Wheatley (davwheat), Trainline EU, and their upstream sources. Our modifications (field mapping, group pseudo-stations, curated aliases) are published in this repository per ODbL share-alike — full notice indata/LICENSE-DATA.md. The MIT licence covers uktrains' own code only.The BR Fares free tier is registered for non-commercial use only.
Fares are flow-level (origin→destination, railcard-adjusted), not per-train, and are stamped indicative and time-stamped at quote time. Advance fares are additionally flagged subject to availability, since Advance quota lives in the closed National Reservation Service that no open source exposes. Re-search before presenting a fare older than ~15 minutes.
The tool never takes payment and never states or implies that a booking was completed — only that a booking link was produced.
Every booking link carries a
notCarried: string[]field (typically["railcards", "seatPreferences", "travelClass"]) naming booking-page preferences the retailer's URL does NOT pre-fill — including railcards, so a Tier-1 in-tool fare quote that already reflects a railcard discount can still land the human on the retail page at the undiscounted price unless they (re)apply the railcard there. Say so when handing over a link with a railcard-discounted quote attached.
Further reading
Design spec:
docs/superpowers/specs/2026-07-31-uktrains-design.mdImplementation plan:
docs/superpowers/plans/2026-07-31-uktrains-core-tier0-1.mdAgent guide:
AGENTS.md
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server that enables AI assistants to interact with the Netherlands Railways (NS) API for route planning, pricing, and real-time departure information. It provides tools for searching stations, planning trips with connections, and viewing real-time departure boards.31MIT
- FlicenseNot gradedqualityDmaintenanceMCP server for real-time German public transport data (HAFAS/VBN network). Enables querying departures, arrivals, journeys, and nearby stops using natural language.
- FlicenseNot gradedqualityDmaintenanceMCP server for querying French railway services (SNCF) via the Navitia API, enabling station search, journey planning, and departure board retrieval.
- FlicenseNot gradedqualityDmaintenanceMCP server for querying Belgian railway data (SNCB/NMBS) via the iRail API, enabling station search, liveboard, and journey planning.
Related MCP Connectors
Geo-based flight search MCP server. Find more flights between any two places on earth
Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aaryan-gulia/uktrains'
If you have feedback or need assistance with the MCP directory API, please join our Discord server