get_journeys
Plan public transport journeys in Berlin by specifying origin, destination, and departure time. Retrieve multiple route options using the Berlin Transport MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
departure | No | Departure time (e.g. tomorrow 2pm) | |
from | Yes | Origin stop ID | |
results | No | Number of results to return | |
to | Yes | Destination stop ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"departure": {
"description": "Departure time (e.g. tomorrow 2pm)",
"type": "string"
},
"from": {
"description": "Origin stop ID",
"type": "string"
},
"results": {
"description": "Number of results to return",
"type": "number"
},
"to": {
"description": "Destination stop ID",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
}