NS Travel Information MCP Server

get_station_info

Get detailed information about a train station

Input Schema

NameRequiredDescriptionDefault
includeNonPlannableStationsNoInclude stations where trains do not stop regularly
limitNoMaximum number of results to return
queryYesStation name or code to search for

Input Schema (JSON Schema)

{ "properties": { "includeNonPlannableStations": { "default": false, "description": "Include stations where trains do not stop regularly", "type": "boolean" }, "limit": { "default": 10, "description": "Maximum number of results to return", "maximum": 50, "minimum": 1, "type": "number" }, "query": { "description": "Station name or code to search for", "type": "string" } }, "required": [ "query" ], "type": "object" }