get_departures
Retrieve real-time departure information for a specific stop in Berlin's public transport system, including the number of results desired. Powered by the Berlin Transport MCP Server and VBB API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
results | No | Number of results to return | |
stop_id | Yes | Stop ID to get departures for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"results": {
"description": "Number of results to return",
"type": "number"
},
"stop_id": {
"description": "Stop ID to get departures for",
"type": "string"
}
},
"required": [
"stop_id"
],
"type": "object"
}