dart-mcp

search_json_financial_data

Retrieve financial data in JSON format for companies when primary methods fail. Input company name, business year, and report details to access specific financial statements via the MCP server.

Instructions

회사의 재무 정보를 JSON API를 통해 제공하는 실패시 보완하는 보조 도구. search_disclosure, search_detailed_financial_data이 2023년 9월 이전 자료 분석에 실패했을 때 대안으로 활용. Args: company_name: 회사명 (예: 삼성전자, 네이버 등) bsns_year: 사업연도 (4자리, 예: "2023") ctx: MCP Context 객체 reprt_code: 보고서 코드 ("11011": 사업보고서, "11012": 반기보고서, "11013": 1분기보고서, "11014": 3분기보고서) fs_div: 개별/연결구분 ("OFS": 재무제표, "CFS": 연결재무제표) statement_type: 재무제표 유형 ("BS": 재무상태표, "IS": 손익계산서, "CIS": 포괄손익계산서, "CF": 현금흐름표, "SCE": 자본변동표) None인 경우 모든 유형의 재무제표 정보를 반환합니다. Returns: 선택한 재무제표 유형(들)의 세부 항목 정보가 포함된 텍스트 (당기 데이터만 표시)

Input Schema

NameRequiredDescriptionDefault
bsns_yearYes
company_nameYes
fs_divNoOFS
reprt_codeNo11011
statement_typeNo

Input Schema (JSON Schema)

{ "properties": { "bsns_year": { "title": "Bsns Year", "type": "string" }, "company_name": { "title": "Company Name", "type": "string" }, "fs_div": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "OFS", "title": "Fs Div" }, "reprt_code": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "11011", "title": "Reprt Code" }, "statement_type": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Statement Type" } }, "required": [ "company_name", "bsns_year" ], "title": "search_json_financial_dataArguments", "type": "object" }

You must be authenticated.

Other Tools from dart-mcp

Related Tools

ID: eg5c82ckrv