addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / station_number / description
Added value: +"The station number to query (e.g., 22460)."
removedInput schema / properties / station_number / title
Removed value: -"Station Number"
removedOutput schema / $defs
Removed value: -{
- "TimeTable": {
- "properties": {
- "direction": {
- "description": "方面",
- "title": "Direction",
- "type": "string"
- },
- "pole": {
- "description": "乗り場",
- "title": "Pole",
- "type": "string"
- },
- "route": {
- "description": "路線",
- "title": "Route",
- "type": "string"
- },
- "stop_stations": {
- "description": "停車バス停のリスト",
- "items": {
- "type": "string"
- },
- "title": "Stop Stations",
- "type": "array"
- },
- "timetable": {
- "additionalProperties": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "description": "曜日別の時刻表",
- "title": "Timetable",
- "type": "object"
- },
- "url": {
- "title": "Url",
- "type": "string"
- }
- },
- "required": [
- "route",
- "direction",
- "pole",
- "stop_stations",
- "timetable",
- "url"
- ],
- "title": "TimeTable",
- "type": "object"
- },
- "TimeTableResponse": {
- "properties": {
- "station_number": {
- "title": "Station Number",
- "type": "integer"
- },
- "timetables": {
- "items": {
- "$ref": "#/$defs/TimeTable"
- },
- "title": "Timetables",
- "type": "array"
- },
- "url": {
- "title": "Url",
- "type": "string"
- }
- },
- "required": [
- "station_number",
- "timetables",
- "url"
- ],
- "title": "TimeTableResponse",
- "type": "object"
- }
-}
addedOutput schema / description
Added value: +"Response model for station timetable queries.\n\nContains all timetables for different routes operating at a given station,\nalong with the station identifier and reference URL."
removedOutput schema / properties / result
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/TimeTableResponse"
- },
- {
- "type": "null"
- }
- ]
-}
addedOutput schema / properties / station_number
Added value: +{
+ "description": "バス停番号",
+ "type": "integer"
+}
addedOutput schema / properties / timetables
Added value: +{
+ "items": {
+ "description": "Timetable information for a single route at a station.\n\nContains route details, direction, boarding location, and departure times\norganized by day of week.",
+ "properties": {
+ "direction": {
+ "description": "行き先",
+ "type": "string"
+ },
+ "pole": {
+ "description": "のりば",
+ "type": "string"
+ },
+ "route": {
+ "description": "系統",
+ "type": "string"
+ },
+ "route_codes": {
+ "description": "系統コードのリスト",
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ "stop_station_names": {
+ "description": "停車バス停名のリスト",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "timetable": {
+ "additionalProperties": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "description": "曜日別の時刻表",
+ "type": "object"
+ },
+ "url": {
+ "description": "系統の時刻表のURL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "route",
+ "route_codes",
+ "direction",
+ "pole",
+ "stop_station_names",
+ "timetable",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / url
Added value: +{
+ "description": "系統別の時刻表一覧のURL",
+ "type": "string"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "station_number",
+ "timetables",
+ "url"
+]
removedOutput schema / title
Removed value: -"_WrappedResult"
removedOutput schema / x-fastmcp-wrap-result
Removed value: -true