Seoul Essentials

get_subway_timetable

Get Seoul subway timetable for a specific station. Args: station: Station name in Korean or English (e.g., "강남" or "Gangnam", "서울역" or "Seoul Station"). line: Line number (e.g., "1", "2", "3"). If omitted for transfer stations, returns all lines. day_type: Schedule type — "weekday", "saturday", or "holiday" (default: "weekday"). direction: Train direction — "up" (toward city center) or "down" (away from center). If omitted, returns both. Returns: Timetable data with departure times, destinations, and transfer line info, or an error message if station not found.

Remote do-droid/seoul-essentials

Other tools also called get_subway_timetable? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "line": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null
    },
    "station": {
      "type": "string"
    },
    "day_type": {
      "enum": [
        "weekday",
        "saturday",
        "holiday"
      ],
      "type": "string",
      "default": "weekday"
    },
    "direction": {
      "anyOf": [
        {
          "enum": [
            "up",
            "down"
          ],
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null
    }
  }
}