Skip to main content
Glama
anboyu-alt

dart-risk-mcp

by anboyu-alt

get_audit_opinion_history

Retrieves year-by-year audit opinions, auditor changes, and non-audit service history for a Korean company to flag risk signals in DART disclosures.

Instructions

감사의견·감사인 교체·비감사용역 이력을 조회합니다.

연도별 의견 결과와 감사인 교체를 봅니다. 감사인이 그 의견에 무엇이라고 썼는지(의견근거·계속기업 관련 불확실성·강조사항·핵심감사사항)는 구조화 응답에 없고 원문에 있습니다 — **get_audit_opinion_text**가 그 문장을 원문 그대로 인용합니다.

DART OpenAPI 3개 엔드포인트(accnutAdtorNmNdAdtOpinion, adtServcCnclsSttus, accnutAdtorNonAdtServcCnclsSttus)를 결합해 연도별 감사의견·감사인·보수 경고 신호를 한글 서술로 반환합니다.

Args: company_name: 기업명 또는 종목코드(6자리). lookback_years: 1~10(밖이면 5로 강제).

Returns: 감사의견 표·감사인 교체 이력·비감사용역 계약 건수 텍스트.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
company_nameYes
lookback_yearsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.3

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It helpfully discloses a data-availability boundary (the auditor's reasoning is not in the structured response but in the original text) and mentions it aggregates three DART endpoints and emits warning signals. However, it says nothing about auth/permissions, rate limits, or read-only status, so disclosure is incomplete for an unannotated tool.

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

Conciseness4/5

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

Front-loaded with the purpose and the sibling distinction, then the endpoint/behavior note, then args. The explicit 'Returns:' section is mildly redundant given an output schema exists, but overall the text is tight and each part earns its place.

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

Completeness4/5

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

For a 2-parameter tool with an output schema, the definition covers both parameters fully and explains the behavioral scope. The only gaps are unannotated operational details (safety/limits), which are minor given the output schema and clear param documentation.

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 description coverage is 0%, so the description must compensate, and it does: company_name is documented as accepting either a company name or a 6-digit ticker, and lookback_years as a 1–10 range that is clamped to 5 when out of bounds. This adds real semantics (accepted formats and clamping behavior) beyond the bare schema.

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?

States a specific verb (조회) and a precise set of resources (감사의견·감사인 교체·비감사용역 이력), then explicitly distinguishes itself from the sibling get_audit_opinion_text by noting that tool quotes the auditor's narrative reasoning from the original text. An agent can pick between the two without opening either schema.

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?

It clearly routes the agent: use this for the year-by-year opinion/auditor-change table, and use get_audit_opinion_text when the auditor's written reasoning (opinion basis, going-concern uncertainty, emphasis, key audit matters) is needed. Context for use is explicit, though there is no stated 'when not to use' beyond the sibling routing.

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