Skip to main content
Glama
wlstmd

daegu-transit-mcp

by wlstmd

대구 도로 구간별 실시간 소통정보

get_road_traffic

Retrieve real-time road speed and traffic conditions for Daegu road segments by searching road, section, or point names via keyword.

Instructions

표준노드링크 기준 도로 구간의 실시간 속도/소통상황(소통원활·서행·정체)을 가져온다. keyword로 도로명·구간명·지점명을 부분 검색한다 (예: '동대구로', '달구벌대로'). 이 API는 서버 측 위치 필터가 없어 넓은 풀을 가져와 클라이언트에서 걸러내므로, 너무 드문 지명은 안 잡힐 수 있다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo최대 건수 (기본 10)
keywordNo도로명/구간명/지점명 키워드 (없으면 첫 N건 반환)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and does it well: it discloses partial keyword matching, the lack of a server-side location filter, client-side filtering, and the limitation that rare place names may not be found. It is transparent about a real failure mode.

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?

Two dense sentences that front-load the tool's purpose and then add the key caveat. No filler or repeated schema text.

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

Completeness5/5

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

For a simple read-only fetch tool with two optional parameters and no output schema, the description covers purpose, search behavior, examples, and an important limitation. An agent has enough to invoke it correctly.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining keyword as a partial search over road/segment/point names and giving concrete examples, while the schema already documents limit and the default behavior when keyword is absent.

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 names a specific action ('가져온다') and resource ('표준노드링크 기준 도로 구간의 실시간 속도/소통상황'), including the three traffic states. This clearly separates it from the bus- and parking-related siblings.

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

Usage Guidelines4/5

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

The title and description make clear it is for Daegu road-segment traffic, so an agent can infer when to choose it. It does not explicitly name alternatives or state when not to use it, so it stops short of a 5.

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