# K-Targo Subway Server

Provide real-time and comprehensive subway information for South Korea, including station search and train timetables. Access up-to-date data via the national Tago API to enhance transportation-relat…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add slicequeue/k-targo-subway-mcp-server

# Browse available tools
npx -y @smithery/cli@latest tool list slicequeue/k-targo-subway-mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get slicequeue/k-targo-subway-mcp-server search_subway_station

# Call a tool
npx -y @smithery/cli@latest tool call slicequeue/k-targo-subway-mcp-server search_subway_station '{}'
```

## Tools (3)

- `search_subway_station` — 지하철역 이름으로 역 정보를 검색합니다. 역 ID, 역 이름, 노선 정보를 반환합니다. '역' 접미사는 자동으로 제거됩니다 (예: '강남역' → '강남').
- `get_subway_timetable` — 지하철역의 시간표를 조회합니다. 요일별, 상하행별 시간표를 제공합니다.
- `get_all_subway_timetables` — 지하철역의 모든 요일, 모든 방향의 시간표를 한 번에 조회합니다. 평일/토요일/일요일, 상행/하행 모든 조합을 제공합니다.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get slicequeue/k-targo-subway-mcp-server <tool-name>
```

---

Source: https://github.com/slicequeue/k-targo-subway-mcp-server
