Skip to main content
Glama

재무제표 조회

get_financials

Fetch a single company's financial statements from DART, including balance sheet, total equity, and paid-in capital, to support disclosure compliance calculations.

Instructions

단일회사 재무제표를 조회합니다 (기본: 직전 연도 사업보고서의 재무상태표).

  • key_metrics 의 total_equity(자본총계)·paid_in_capital(자본금)은 기준금액 산정의 totalEquity/paidInCapital 입력으로 그대로 쓸 수 있습니다 (단위: 원)

  • 금액은 raw/value(원 단위)/display 세 값을 함께 줍니다

  • change 는 전기 대비 증감입니다 (손익·현금흐름은 누적 필드가 있을 때만 누적 기준)

  • 외부감사 대상이 아닌 회사는 DART 에 재무제표가 없을 수 있습니다 — 집단 소속사면 포털 재무가 대안입니다

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
unitNodisplay 표시 단위 (기본 million=백만원). raw/value 는 항상 원 단위 그대로
yearNo사업연도 (기본: 직전 연도). 사업보고서는 보통 3월 말 제출이므로 없으면 그 전 해로 다시 시도
queryNo회사명·종목코드·corp_code — resolve_entity 와 같은 규칙
fs_divNoCFS=연결(기본) / OFS=별도. 연결이 없으면 별도로 자동 폴백합니다 (비상장 다수는 별도만 있음)
reportNo보고서 종류 (기본 annual=사업보고서)
corp_codeNoDART 법인코드 8자리
statementNo재무제표 종류 (기본 BS=재무상태표). all 은 응답이 큽니다

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations provided, the description carries the full behavioral burden, and it does so well: it explains that amounts come as raw/value/display, that change is prior-period difference, that cumulative treatment applies only when cumulative fields exist, that OFS falls back to CFS, and that some companies may have no financial statements at all. This is substantial behavioral disclosure beyond the schema.

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 compact and front-loaded: the main purpose appears first, followed by four tight bullets, each adding distinct value. There is no fluff or repetition of schema content.

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?

Given there is no output schema and no annotations, the description covers a lot: defaults, fallback behavior, value formats, change semantics, and availability caveats. It is slightly incomplete regarding error behavior or what the response looks like beyond amounts and key_metrics, but it is still quite complete for a query tool of this complexity.

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 baseline is 3. The description adds some integration context (key_metrics fields usable as downstream inputs) and output semantics, but it does not meaningfully expand on the input parameters themselves, which are already well documented in the 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?

The description states a specific verb and resource: '단일회사 재무제표를 조회합니다' (retrieve single-company financial statements), and it gives a concrete default (latest annual report's balance sheet). It is clearly distinguishable from siblings like get_group_structure or read_disclosure because it scopes to single-company financial statement data.

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 description gives clear usage context: defaults for year, report type, statement type, and fs_div fallback. It also warns that non-externally-audited companies may have no DART financial statements and suggests portal financials as an alternative for group affiliates. It does not explicitly name a sibling tool to prefer instead, so it stops short of full when-not-to-use guidance.

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