get-station-by-telecode
Retrieve detailed Chinese railway station information, including name, pinyin, and city, using the station's 3-letter telecode. Ideal for specific queries or debugging on the 12306-MCP server.
Instructions
通过车站的 station_telecode
查询车站的详细信息,包括名称、拼音、所属城市等。此接口主要用于在已知 telecode
的情况下获取更完整的车站数据,或用于特殊查询及调试目的。一般用户对话流程中较少直接触发。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
stationTelecode | Yes | 车站的 `station_telecode` (3位字母编码) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"stationTelecode": {
"description": "车站的 `station_telecode` (3位字母编码)",
"type": "string"
}
},
"required": [
"stationTelecode"
],
"type": "object"
}