list_treaties
한국이 체결한 조세조약(이중과세방지협약) 수록 현황을 반환한다. country 없이 호출하면 체결국 목록, country를 주면 그 나라 조약(협약·개정의정서·교환각서) 목록과 발효일.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | 체결국 한글명 (예: '미국', '일본'). 생략하면 전체 체결국 목록 |
한국이 체결한 조세조약(이중과세방지협약) 수록 현황을 반환한다. country 없이 호출하면 체결국 목록, country를 주면 그 나라 조약(협약·개정의정서·교환각서) 목록과 발효일.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | 체결국 한글명 (예: '미국', '일본'). 생략하면 전체 체결국 목록 |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does disclose the key behavioral trait: it returns a country list or a filtered treaty list with effective dates. It wisely uses '반환한다' (returns), implying a read-only operation, though it does not discuss edge cases, ordering, or data freshness.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact sentence that front-loads the main purpose and then cleanly explains the conditional behavior. Every phrase conveys useful information with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one optional parameter and no output schema, the description is nearly complete: it covers both invocation modes and names the returned treaty list and effective dates. It could go slightly further by specifying output shape or sort order, but the high-level return behavior is sufficient for reliable tool selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents the optional country parameter, its expected Korean-name format, and the behavior when omitted, with 100% schema description coverage. The description restates the parameter's effect but does not add meaningful new semantics beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies a specific resource (tax treaties concluded by Korea) and describes the two distinct output behaviors based on the country parameter. However, it does not explicitly differentiate this tool from sibling tools like search_treaties, so it misses the top tier.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context by specifying what happens when country is omitted versus supplied. It does not mention alternatives or exclusion conditions, but for this simple list tool the two calling modes are effectively practical guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource-action pair: get/list/search separated across articles, annexes, treaties, laws, upcoming changes, cases, and interpretations. Even the search/get pairs are clearly delineated by role, and cases vs interpretations are distinguished by source type.
Tool names follow a consistent snake_case verb_noun pattern (get_, list_, search_) with clear resource nouns. Minor variation like list_upcoming is still intuitive and does not break the overall pattern.
Twelve tools is appropriate for a tax law research server covering statutes, annexes, treaties, judicial cases, administrative interpretations, and upcoming amendments. Each tool has a non-redundant role, and the set is neither bloated nor thin.
The tool surface covers the core tax law research workflow well: searching and retrieving articles/annexes/treaties, listing available sources, checking legislative histories, and reviewing upcoming changes. A minor gap is the absence of explicit get_ tools for full case and interpretation documents, though the search tools may provide sufficient access.