NS Travel Information MCP Server

get_travel_advice

Get detailed travel routes between two train stations, including transfers, real-time updates, platform information, and journey duration. Can plan trips for immediate departure or for a specific future time, with options to optimize for arrival time. Returns multiple route options with status and crowding information.

Input Schema

NameRequiredDescriptionDefault
dateTimeNoFormat - date-time (as date-time in RFC3339). Datetime that the user want to depart from his origin or or arrive at his destination
fromStationYesName or code of departure station
searchForArrivalNoIf true, dateTime is treated as desired arrival time
toStationYesName or code of destination station

Input Schema (JSON Schema)

{ "properties": { "dateTime": { "description": "Format - date-time (as date-time in RFC3339). Datetime that the user want to depart from his origin or or arrive at his destination", "type": "string" }, "fromStation": { "description": "Name or code of departure station", "type": "string" }, "searchForArrival": { "description": "If true, dateTime is treated as desired arrival time", "type": "boolean" }, "toStation": { "description": "Name or code of destination station", "type": "string" } }, "required": [ "fromStation", "toStation" ], "type": "object" }