get_route_stops_info
Retrieve all bus stops for a specific route using the KMB Bus MCP Server. Input the route number to access detailed stop information for planning journeys or tracking bus locations.
Instructions
Get all stops along a specified bus route.
Args:
route: The bus route number (e.g., "1A", "6", "960")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
route | Yes |
Input Schema (JSON Schema)
{
"properties": {
"route": {
"title": "Route",
"type": "string"
}
},
"required": [
"route"
],
"title": "get_route_stops_infoArguments",
"type": "object"
}