addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / station_name / description
Added value: +"The station name to look up (e.g., \"名古屋駅\")."
removedInput schema / properties / station_name / title
Removed value: -"Station Name"
removedOutput schema / $defs
Removed value: -{
- "StationNumberResponse": {
- "properties": {
- "station_name": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Station Name"
- },
- "station_number": {
- "anyOf": [
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Station Number"
- },
- "success": {
- "title": "Success",
- "type": "boolean"
- }
- },
- "required": [
- "success"
- ],
- "title": "StationNumberResponse",
- "type": "object"
- }
-}
addedOutput schema / description
Added value: +"Response model for station number lookup by name.\n\nUsed by the get_station_number tool to return station lookup results,\nincluding fuzzy matching outcomes."
removedOutput schema / properties / result
Removed value: -{
- "anyOf": [
- {
- "$ref": "#/$defs/StationNumberResponse"
- },
- {
- "type": "null"
- }
- ]
-}
addedOutput schema / properties / station_name
Added value: +{
+ "description": "バス停名",
+ "type": "string"
+}
addedOutput schema / properties / station_number
Added value: +{
+ "description": "バス停番号",
+ "type": "integer"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "station_name",
+ "station_number"
+]
removedOutput schema / title
Removed value: -"_WrappedResult"
removedOutput schema / x-fastmcp-wrap-result
Removed value: -true