Skip to main content
Glama

search_detailed_financial_data

Extract detailed financial statements from XBRL files for Korean companies. Specify company name, date range, and statement type to analyze financial data from DART-MCP server.

Instructions

회사의 세부적인 재무 정보를 제공하는 도구.
XBRL 파일을 파싱하여 상세한 재무 데이터를 추출합니다.

Args:
    company_name: 회사명 (예: 삼성전자, 네이버 등)
    start_date: 시작일 (YYYYMMDD 형식, 예: 20230101)
    end_date: 종료일 (YYYYMMDD 형식, 예: 20231231)
    ctx: MCP Context 객체
    statement_type: 재무제표 유형 ("재무상태표", "손익계산서", "현금흐름표" 중 하나 또는 None)
                   None인 경우 모든 유형의 재무제표 정보를 반환합니다.
    
Returns:
    선택한 재무제표 유형(들)의 세부 항목 정보가 포함된 텍스트

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
company_nameYes
start_dateYes
end_dateYes
statement_typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/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. While it mentions parsing XBRL files and returning text with financial details, it doesn't cover important aspects like whether this is a read-only operation, potential rate limits, authentication requirements, error conditions, or what happens with invalid inputs. The description provides basic functional information but lacks behavioral context needed for safe invocation.

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?

The description is well-structured with clear sections: purpose statement, parameter explanations, and return value description. It's appropriately sized with no wasted sentences. The only minor improvement would be more explicit sibling differentiation, but overall it's efficiently organized and front-loaded with the core purpose.

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 4-parameter tool with no annotations and no output schema, the description does a decent job covering the basics: purpose, parameters, and return format. However, it lacks important context about behavioral aspects (safety, limits, errors) and doesn't help the agent choose between similar tools. Given the complexity of financial data extraction, more guidance would be beneficial.

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

Parameters5/5

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

The description provides excellent parameter semantics beyond the schema. With 0% schema description coverage, the description fully compensates by explaining all 4 parameters: company_name (with examples), start_date/end_date (format and examples), statement_type (enum values and None behavior), and even mentions ctx parameter. This adds crucial meaning that the bare schema lacks.

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: '회사의 세부적인 재무 정보를 제공하는 도구' (provides detailed financial information for companies) and 'XBRL 파일을 파싱하여 상세한 재무 데이터를 추출합니다' (parses XBRL files to extract detailed financial data). This specifies both the action (parse/extract) and resource (financial data from XBRL files), though it doesn't explicitly differentiate from sibling tools like 'search_json_financial_data'.

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 'search_json_financial_data' or 'search_disclosure', nor does it specify any prerequisites, exclusions, or contextual factors that would help an agent choose between available options.

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