dart-mcp

search_detailed_financial_data

Extract detailed financial data from XBRL files for specific companies within a defined date range. Analyze financial statements like balance sheets, income statements, or cash flow statements.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
company_nameYes
end_dateYes
start_dateYes
statement_typeNo

Input Schema (JSON Schema)

{ "properties": { "company_name": { "title": "Company Name", "type": "string" }, "end_date": { "title": "End Date", "type": "string" }, "start_date": { "title": "Start Date", "type": "string" }, "statement_type": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Statement Type" } }, "required": [ "company_name", "start_date", "end_date" ], "title": "search_detailed_financial_dataArguments", "type": "object" }

You must be authenticated.

Other Tools from dart-mcp

Related Tools

ID: eg5c82ckrv