Skip to main content
Glama

πŸ‡°πŸ‡· K-Targo Subway MCP Server

ν•œκ΅­ μ§€ν•˜μ²  정보λ₯Ό μ œκ³΅ν•˜λŠ” MCP (Model Context Protocol) μ„œλ²„μž…λ‹ˆλ‹€.

πŸš‡ μ£Όμš” κΈ°λŠ₯

  • μ§€ν•˜μ² μ—­ 검색: μ—­λͺ…μœΌλ‘œ μ§€ν•˜μ² μ—­ 정보 검색

  • μ—΄μ°¨ μ‹œκ°„ν‘œ 쑰회: νŠΉμ • μ—­μ˜ μ—΄μ°¨ μ‹œκ°„ν‘œ 쑰회

  • μ‹€μ‹œκ°„ μ§€ν•˜μ²  정보: Tago APIλ₯Ό ν†΅ν•œ μ‹€μ‹œκ°„ 데이터 제곡

  • MCP ν‘œμ€€ μ€€μˆ˜: Model Context Protocol ν‘œμ€€μ„ λ”°λ₯΄λŠ” 도ꡬ 제곡

Related MCP server: subway-congestion-mcp

πŸ› οΈ μ„€μΉ˜ 및 μ‚¬μš©

Installing via Smithery

To install k-targo-subway-mcp-server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @slicequeue/k-targo-subway-mcp-server --client claude

1. 곡곡데이터 API ν‚€ μ„€μ •

이 μ„œλ²„λŠ” ꡭ토ꡐ톡뢀_(TAGO)_μ§€ν•˜μ² μ •λ³΄ APIλ₯Ό μ‚¬μš©ν•©λ‹ˆλ‹€. μ‚¬μš©ν•˜κΈ° 전에 API ν‚€λ₯Ό μ„€μ •ν•΄μ•Ό ν•©λ‹ˆλ‹€.

API 정보

API ν‚€ λ°œκΈ‰

  1. 곡곡데이터포털에 κ°€μž…

  2. "ꡭ토ꡐ톡뢀_(TAGO)_μ§€ν•˜μ² μ •λ³΄" API μ‹ μ²­

  3. 승인 ν›„ λ°œκΈ‰λ°›μ€ API ν‚€λ₯Ό ν™˜κ²½λ³€μˆ˜λ‘œ μ„€μ •

ν™˜κ²½λ³€μˆ˜ μ„€μ •

# Windows
set GOV_API_KEY=your_api_key_here

# macOS/Linux
export GOV_API_KEY=your_api_key_here

# .env 파일 μ‚¬μš© (ꢌμž₯)
echo "GOV_API_KEY=your_api_key_here" > .env

2. npx둜 μ¦‰μ‹œ μ‹€ν–‰ (ꢌμž₯)

npx k-targo-subway-mcp-server

3. npm으둜 μ„€μΉ˜

npm install k-targo-subway-mcp-server

4. κΈ€λ‘œλ²Œ μ„€μΉ˜

npm install -g k-targo-subway-mcp-server

πŸ“¦ MCP 도ꡬ

1. μ§€ν•˜μ² μ—­ 검색 (search_subway_station)

μ§€ν•˜μ² μ—­λͺ…μœΌλ‘œ μ—­ 정보λ₯Ό κ²€μƒ‰ν•©λ‹ˆλ‹€.

μž…λ ₯ νŒŒλΌλ―Έν„°:

  • stationName (string): 검색할 μ—­λͺ…

μ‚¬μš© μ˜ˆμ‹œ:

// "강남" μ—­ 검색
const result = await searchSubwayStationTool.handler({
  stationName: "강남"
}, {});

2. μ—΄μ°¨ μ‹œκ°„ν‘œ 쑰회 (get_station_timetable)

νŠΉμ • μ—­μ˜ μ—΄μ°¨ μ‹œκ°„ν‘œλ₯Ό μ‘°νšŒν•©λ‹ˆλ‹€.

μž…λ ₯ νŒŒλΌλ―Έν„°:

  • stationCode (string): μ—­ μ½”λ“œ

  • direction (string): λ°©ν–₯ (상행/ν•˜ν–‰)

μ‚¬μš© μ˜ˆμ‹œ:

// 강남역 상행 μ‹œκ°„ν‘œ 쑰회
const result = await getStationTimetableTool.handler({
  stationCode: "0222",
  direction: "상행"
}, {});

πŸ—οΈ ν”„λ‘œμ νŠΈ ꡬ쑰

src/
β”œβ”€β”€ config/           # μ„€μ • 파일
β”‚   └── index.ts
β”œβ”€β”€ external/         # μ™ΈλΆ€ API 연동
β”‚   β”œβ”€β”€ common/       # 곡톡 μœ ν‹Έλ¦¬ν‹°
β”‚   └── tago-subway/  # Tago μ§€ν•˜μ²  API
β”‚       β”œβ”€β”€ api.ts    # API ν΄λΌμ΄μ–ΈνŠΈ
β”‚       β”œβ”€β”€ service.ts # λΉ„μ¦ˆλ‹ˆμŠ€ 둜직
β”‚       β”œβ”€β”€ dtos/     # 데이터 전솑 객체
β”‚       └── types/    # νƒ€μž… μ •μ˜
β”œβ”€β”€ tools/           # MCP 도ꡬ듀
β”‚   β”œβ”€β”€ subway.ts    # μ§€ν•˜μ²  κ΄€λ ¨ 도ꡬ
β”‚   β”œβ”€β”€ index.ts     # 도ꡬ듀 톡합
β”‚   └── types.ts     # 도ꡬ νƒ€μž… μ •μ˜
β”œβ”€β”€ utils/           # μœ ν‹Έλ¦¬ν‹°
β”‚   β”œβ”€β”€ PackageJsonUtil.ts
β”‚   └── ResponseUtil.ts
└── index.ts         # 메인 μ§„μž…μ 

πŸ”§ 개발 ν™˜κ²½ μ„€μ •

1. μ˜μ‘΄μ„± μ„€μΉ˜

npm install

2. API ν‚€ μ„€μ •

# .env 파일 생성
echo "GOV_API_KEY=your_api_key_here" > .env

# λ˜λŠ” ν™˜κ²½λ³€μˆ˜λ‘œ μ„€μ •
export GOV_API_KEY=your_api_key_here  # macOS/Linux
set GOV_API_KEY=your_api_key_here     # Windows

.env 파일 μ˜ˆμ‹œ

# ꡭ토ꡐ톡뢀_(TAGO)_μ§€ν•˜μ² μ •λ³΄ API ν‚€
# 곡곡데이터포털(https://www.data.go.kr/)μ—μ„œ λ°œκΈ‰λ°›μ€ API ν‚€λ₯Ό μ„€μ •ν•˜μ„Έμš”
# API URL: https://www.data.go.kr/data/15098554/openapi.do
GOV_API_KEY=your_public_data_api_key_here

# μ˜ˆμ‹œ:
# GOV_API_KEY=abc123def456ghi789jkl012mno345pqr678stu901vwx234yz567

3. 개발 μ„œλ²„ μ‹€ν–‰

npm run dev

4. λΉŒλ“œ

npm run build

5. ν…ŒμŠ€νŠΈ

# 전체 ν…ŒμŠ€νŠΈ
npm test

# API ν…ŒμŠ€νŠΈ
npm run test:api

# νŠΉμ • μ—­ ν…ŒμŠ€νŠΈ
npm run test:api:station

πŸ“‘ API 연동

ꡭ토ꡐ톡뢀_(TAGO)_μ§€ν•˜μ² μ •λ³΄ API

  • API λͺ…: ꡭ토ꡐ톡뢀_(TAGO)_μ§€ν•˜μ² μ •λ³΄

  • API URL: https://www.data.go.kr/data/15098554/openapi.do

  • μ œκ³΅κΈ°κ΄€: ꡭ토ꡐ톡뢀

  • κΈ°λ³Έ URL: https://api.tago.go.kr

  • 인증: 곡곡데이터 API ν‚€ 기반 인증 (GOV_API_KEY ν™˜κ²½λ³€μˆ˜)

  • 데이터 ν˜•μ‹: JSON

  • API ν‚€ λ°œκΈ‰: κ³΅κ³΅λ°μ΄ν„°ν¬ν„Έμ—μ„œ "ꡭ토ꡐ톡뢀_(TAGO)_μ§€ν•˜μ² μ •λ³΄" μ‹ μ²­

ν™˜κ²½λ³€μˆ˜ μ„€μ •

# ν•„μˆ˜ ν™˜κ²½λ³€μˆ˜
GOV_API_KEY=your_public_data_api_key_here

μ£Όμš” μ—”λ“œν¬μΈνŠΈ

  • GET /subway-station/search: μ§€ν•˜μ² μ—­ 검색

  • GET /subway-station/{stationCode}/timetable: μ—΄μ°¨ μ‹œκ°„ν‘œ 쑰회

🎯 μ‚¬μš© 예제

MCP ν΄λΌμ΄μ–ΈνŠΈ μ„€μ •

MCP ν΄λΌμ΄μ–ΈνŠΈμ—μ„œ 이 μ„œλ²„λ₯Ό μ‚¬μš©ν•˜λ €λ©΄ λ‹€μŒκ³Ό 같이 μ„€μ •ν•˜μ„Έμš”:

{
  "mcpServers": {
    "k-targo-subway": {
      "command": "npx",
      "args": ["k-targo-subway-mcp-server"],
      "env": {
        "GOV_API_KEY": "your_targo_api_key_here"
      }
    }
  }
}

MCP ν΄λΌμ΄μ–ΈνŠΈμ—μ„œ μ‚¬μš©

// μ§€ν•˜μ² μ—­ 검색
const searchResult = await mcpClient.callTool('search_subway_station', {
  stationName: '강남'
});

// μ‹œκ°„ν‘œ 쑰회
const timetableResult = await mcpClient.callTool('get_station_timetable', {
  stationCode: '0222',
  direction: '상행'
});

CLIμ—μ„œ 직접 μ‹€ν–‰

# npx둜 μ‹€ν–‰ (ꢌμž₯)
npx k-targo-subway-mcp-server

# κΈ€λ‘œλ²Œ μ„€μΉ˜ ν›„ μ‹€ν–‰
k-targo-subway-mcp-server

# λ˜λŠ” npm 슀크립트둜 μ‹€ν–‰
npm start

πŸ”„ 개발 μ›Œν¬ν”Œλ‘œμš°

  1. μƒˆ κΈ°λŠ₯ μΆ”κ°€: src/tools/에 μƒˆ 도ꡬ 파일 생성

  2. API 연동: src/external/에 μ™ΈλΆ€ API ν΄λΌμ΄μ–ΈνŠΈ μΆ”κ°€

  3. νƒ€μž… μ •μ˜: ν•„μš”ν•œ νƒ€μž…λ“€μ„ μ •μ˜

  4. ν…ŒμŠ€νŠΈ: test/ 디렉토리에 ν…ŒμŠ€νŠΈ μ½”λ“œ μž‘μ„±

  5. λΉŒλ“œ 및 배포: npm run build ν›„ 배포

πŸ“š μ£Όμš” κ°œλ…

MCP Tool

μ‚¬μš©μžκ°€ ν˜ΈμΆœν•  수 μžˆλŠ” ν•¨μˆ˜μž…λ‹ˆλ‹€. μž…λ ₯ μŠ€ν‚€λ§ˆμ™€ ν•Έλ“€λŸ¬ ν•¨μˆ˜λ‘œ κ΅¬μ„±λ©λ‹ˆλ‹€.

TAGO API

κ΅­ν† κ΅ν†΅λΆ€μ—μ„œ μ œκ³΅ν•˜λŠ” μ§€ν•˜μ²  정보 APIμž…λ‹ˆλ‹€. 곡곡데이터포털을 톡해 μ œκ³΅λ©λ‹ˆλ‹€.

μ§€ν•˜μ² μ—­ μ½”λ“œ

각 μ§€ν•˜μ² μ—­μ€ κ³ μœ ν•œ μ½”λ“œλ₯Ό κ°€μ§€κ³  μžˆμŠ΅λ‹ˆλ‹€ (예: 강남역 = "0222").

πŸš€ 배포

# λΉŒλ“œ
npm run build

# npm 배포
npm publish

# μ‹€ν–‰
node dist/index.js

πŸ“„ λΌμ΄μ„ μŠ€

MIT License

🀝 κΈ°μ—¬ν•˜κΈ°

  1. Fork the Project

  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)

  3. Commit your Changes (git commit -m 'Add some AmazingFeature')

  4. Push to the Branch (git push origin feature/AmazingFeature)

  5. Open a Pull Request

πŸ“ž 문의

πŸ™ κ°μ‚¬μ˜ 말

Available Tools

3 tools
get_all_subway_timetablesget_all_subway_timetablesC

μ§€ν•˜μ² μ—­μ˜ λͺ¨λ“  μš”μΌ, λͺ¨λ“  λ°©ν–₯의 μ‹œκ°„ν‘œλ₯Ό ν•œ λ²ˆμ— μ‘°νšŒν•©λ‹ˆλ‹€. 평일/ν† μš”μΌ/μΌμš”μΌ, 상행/ν•˜ν–‰ λͺ¨λ“  쑰합을 μ œκ³΅ν•©λ‹ˆλ‹€.

ParametersJSON Schema
NameRequiredDescriptionDefault
stationIdYesμ§€ν•˜μ² μ—­ ID (search_subway_station λ„κ΅¬λ‘œ λ¨Όμ € κ²€μƒ‰ν•˜μ—¬ 얻을 수 있음)
pageNoNoνŽ˜μ΄μ§€ 번호 (κΈ°λ³Έκ°’: 1)
numOfRowsNoν•œ νŽ˜μ΄μ§€λ‹Ή κ²°κ³Ό 수 (κΈ°λ³Έκ°’: 100)
filterNonArriveNoμ •μ°¨ν•˜μ§€ μ•ŠλŠ” μ—΄μ°¨ 필터링 μ—¬λΆ€ (κΈ°λ³Έκ°’: true)
delayMsecNoAPI 호좜 κ°„ μ§€μ—° μ‹œκ°„ (λ°€λ¦¬μ΄ˆ, κΈ°λ³Έκ°’: 1000)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It describes what data is returned (all combinations of days/directions) but doesn't mention pagination behavior, rate limits, authentication requirements, error conditions, or response format. For a tool with 5 parameters and no annotations, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise - just two sentences that efficiently convey the tool's comprehensive scope. Every word earns its place, with no redundant information. The structure is front-loaded with the core purpose followed by details about what combinations are included.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 5 parameters, no annotations, and no output schema, the description is insufficiently complete. It doesn't explain the pagination system (pageNo, numOfRows), the implications of filterNonArrive, or what the delayMsec parameter controls. The agent would struggle to understand the full behavior and output format from this description alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the baseline is 3. The description doesn't add any parameter-specific information beyond what's already documented in the schema. It mentions the need to obtain stationId from another tool, but this is already covered in the schema's parameter description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: retrieving all timetables for a subway station across all days and directions. It specifies the scope ('λͺ¨λ“  μš”μΌ, λͺ¨λ“  λ°©ν–₯') and the comprehensive nature of the results. However, it doesn't explicitly differentiate from the sibling 'get_subway_timetable' tool, which likely provides more specific filtering options.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get_subway_timetable'. It mentions that stationId can be obtained from 'search_subway_station', but this is parameter documentation rather than usage context. There's no explicit when/when-not guidance or comparison with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_subway_timetableget_subway_timetableC

μ§€ν•˜μ² μ—­μ˜ μ‹œκ°„ν‘œλ₯Ό μ‘°νšŒν•©λ‹ˆλ‹€. μš”μΌλ³„, μƒν•˜ν–‰λ³„ μ‹œκ°„ν‘œλ₯Ό μ œκ³΅ν•©λ‹ˆλ‹€.

ParametersJSON Schema
NameRequiredDescriptionDefault
stationIdYesμ§€ν•˜μ² μ—­ ID (search_subway_station λ„κ΅¬λ‘œ λ¨Όμ € κ²€μƒ‰ν•˜μ—¬ 얻을 수 있음)
dailyTypeYesμš”μΌ ꡬ뢄 (WEEKDAY: 평일, SATURDAY: ν† μš”μΌ, SUNDAY: μΌμš”μΌ/곡휴일)
upDownTypeYesμƒν•˜ν–‰ ꡬ뢄 (UP: 상행/μ„œμšΈλ°©ν–₯, DOWN: ν•˜ν–‰/μ„œμšΈλ°˜λŒ€λ°©ν–₯)
pageNoNoνŽ˜μ΄μ§€ 번호 (κΈ°λ³Έκ°’: 1)
numOfRowsNoν•œ νŽ˜μ΄μ§€λ‹Ή κ²°κ³Ό 수 (κΈ°λ³Έκ°’: 20)
filterNonArriveNoμ •μ°¨ν•˜μ§€ μ•ŠλŠ” μ—΄μ°¨ 필터링 μ—¬λΆ€ (κΈ°λ³Έκ°’: true)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does (retrieves timetables) but lacks critical behavioral details: it doesn't mention pagination behavior (implied by pageNo/numOfRows parameters), filtering behavior (implied by filterNonArrive), response format, error conditions, or rate limits. For a read operation with multiple parameters, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise and front-loaded: two short sentences that directly state the tool's purpose and scope. There is no wasted language or redundancy, making it efficient for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (6 parameters, no annotations, no output schema), the description is incomplete. It doesn't address key aspects like pagination, filtering, response format, or error handling. For a tool with multiple operational parameters and no structured output definition, the description should provide more context to guide effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds minimal parameter semantics beyond the schema. It mentions 'μš”μΌλ³„, μƒν•˜ν–‰λ³„ μ‹œκ°„ν‘œ' (timetables by day type and direction), which aligns with the dailyType and upDownType parameters, but doesn't explain the other parameters (stationId, pageNo, numOfRows, filterNonArrive). With 100% schema description coverage, the baseline is 3, and the description doesn't significantly enhance understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'μ§€ν•˜μ² μ—­μ˜ μ‹œκ°„ν‘œλ₯Ό μ‘°νšŒν•©λ‹ˆλ‹€' (retrieves subway station timetables). It specifies the resource (subway station timetables) and scope (by day type and direction). However, it doesn't explicitly differentiate from sibling tools like 'get_all_subway_timetables' or 'search_subway_station', which would be needed for a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'get_all_subway_timetables' or 'search_subway_station', nor does it specify prerequisites (e.g., that stationId must be obtained from another tool first, as hinted in the schema but not in the description). This leaves the agent without clear usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_subway_stationsearch_subway_stationA

μ§€ν•˜μ² μ—­ μ΄λ¦„μœΌλ‘œ μ—­ 정보λ₯Ό κ²€μƒ‰ν•©λ‹ˆλ‹€. μ—­ ID, μ—­ 이름, λ…Έμ„  정보λ₯Ό λ°˜ν™˜ν•©λ‹ˆλ‹€. 'μ—­' μ ‘λ―Έμ‚¬λŠ” μžλ™μœΌλ‘œ μ œκ±°λ©λ‹ˆλ‹€ (예: '강남역' β†’ '강남').

ParametersJSON Schema
NameRequiredDescriptionDefault
stationNameYes검색할 μ§€ν•˜μ² μ—­ 이름 (예: 강남, 강남역, ν™λŒ€μž…κ΅¬, ν™λŒ€μž…κ΅¬μ—­)
pageNoNoνŽ˜μ΄μ§€ 번호 (κΈ°λ³Έκ°’: 1)
numOfRowsNoν•œ νŽ˜μ΄μ§€λ‹Ή κ²°κ³Ό 수 (κΈ°λ³Έκ°’: 10)

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden of behavioral disclosure. It effectively describes key behaviors: the search functionality, the return data structure (station ID, name, line information), and the automatic suffix removal feature. However, it doesn't mention potential limitations like search accuracy, error conditions, or pagination behavior beyond the parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly sized with two focused sentences. The first sentence states the core purpose, the second adds important behavioral detail about suffix handling with a clear example. Every element earns its place with zero wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 3 parameters, 100% schema coverage, but no output schema or annotations, the description provides adequate but not complete context. It covers the main functionality and a key behavioral feature (suffix removal), but doesn't describe the return format in detail or potential error scenarios that would help an agent use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds minimal value beyond the schema - it mentions the automatic suffix removal which relates to 'stationName' parameter processing, but doesn't provide additional semantic context about parameter interactions or usage patterns.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('κ²€μƒ‰ν•©λ‹ˆλ‹€' - searches), resource ('μ§€ν•˜μ² μ—­ 정보' - subway station information), and scope ('μ—­ μ΄λ¦„μœΌλ‘œ' - by station name). It distinguishes itself from sibling tools like 'get_all_subway_timetables' and 'get_subway_timetable' by focusing on station information search rather than timetable retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (searching by station name) but doesn't explicitly state when to use this tool versus the sibling timetable tools. It provides some guidance about the automatic suffix removal feature, but lacks explicit 'when-to-use' or 'when-not-to-use' comparisons with alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv1.0.0
    • First observedget_all_subway_timetables
    • First observedget_subway_timetable
    • First observedsearch_subway_station

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_all_subway_timetables retrieves comprehensive timetables for all days and directions, get_subway_timetable provides filtered timetables by day and direction, and search_subway_station finds station information. There is no overlap or ambiguity between these functions.

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with a clear verb_noun structure: get_all_subway_timetables, get_subway_timetable, and search_subway_station. The naming is predictable and readable throughout.

Tool Count3/5

With only 3 tools, the server feels thin for a subway domain that might benefit from additional operations like route planning or real-time status. However, the tools cover core timetable and station search functions, making it borderline but functional.

Completeness4/5

The tools provide good coverage for timetable retrieval and station search, but there are minor gaps such as missing operations for route calculation, fare information, or real-time updates. Agents can work around these with the available tools for basic queries.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/slicequeue/k-targo-subway-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server