EDINET: Japanese Financial Statement Analysis
Search Japanese public companies and analyze their financial statements via EDINET (金融庁 電子開示システム). Supports income statements (PL/損益計算書), balance sheets (BS/貸借対照表), and cash flow statements (CF/キャッシュ・フロー計算書) with 161 normalized labels across J-GAAP, IFRS, and US-GAAP.
Use Cases
- - Look up any Japanese public company by name or stock code (証券コード)
- Retrieve and compare income statements across companies
- Analyze balance sheet composition and trends
- Review cash flow patterns (operating, investing, financing)
- Compare financials across different accounting standards (J-GAAP/IFRS/US-GAAP)
- Screen multiple companies by ROE, profit margins, and other metrics
Commands
Search companies
CODEBLOCK0
Financial statements
CODEBLOCK1
Screen companies (compare metrics)
CODEBLOCK2
Test connectivity
CODEBLOCK3
Statement types
| Type | Japanese | Key items |
|---|
| INLINECODE0 | 損益計算書 (PL) | 売上高, 営業利益, 純利益 |
| INLINECODE1 |
貸借対照表 (BS) | 総資産, 純資産, 負債 |
|
cash_flow_statement | CF計算書 | 営業CF, 投資CF, 財務CF |
Workflow
- 1.
edinet-mcp search <company> → find EDINET code - INLINECODE4 → view financial data
- INLINECODE5 → compare multiple companies
Important
- - The
-p (period) parameter is the filing year, not the fiscal year. March-end companies file in June of the next year: FY2023 data → -p 2024. - 161 normalized labels across J-GAAP / IFRS / US-GAAP.
- Results include 当期 (current) and 前期 (prior) periods.
- Rate-limited to 0.5 req/sec by default. Screening 10 companies takes ~1-2 minutes.
- Maximum 20 companies per screen request.
Setup
- - Requires
EDINET_API_KEY environment variable - Free API key: https://disclosure2dl.edinet-fsa.go.jp/
- Python package:
pip install edinet-mcp or INLINECODE10
EDINET:日本财务报表分析
通过EDINET(金融庁電子開示システム)搜索日本上市公司并分析其财务报表。支持利润表(PL/損益計算書)、资产负债表(BS/貸借対照表)和现金流量表(CF/キャッシュ・フロー計算書),涵盖J-GAAP、IFRS和US-GAAP的161个标准化标签。
使用场景
- - 按名称或股票代码(証券コード)查询任意日本上市公司
- 检索并比较不同公司的利润表
- 分析资产负债表的构成和趋势
- 审查现金流量模式(经营、投资、筹资)
- 比较不同会计准则下的财务数据(J-GAAP/IFRS/US-GAAP)
- 按ROE、利润率等指标筛选多家公司
命令
搜索公司
bash
按公司名称搜索(日文或英文)
edinet-mcp search トヨタ
edinet-mcp search ソニー
按股票代码搜索
edinet-mcp search 7203 --limit 5 --json-output
财务报表
bash
丰田(E02144)2024年提交的利润表
edinet-mcp statements -c E02144 -p 2024 -s income_statement --format json
资产负债表
edinet-mcp statements -c E02144 -p 2024 -s balance_sheet --format json
现金流量表
edinet-mcp statements -c E02144 -p 2024 -s cash
flowstatement --format json
所有报表以CSV格式输出
edinet-mcp statements -c E02144 -p 2024 --format csv
筛选公司(比较指标)
bash
比较丰田、索尼、本田的财务指标
edinet-mcp screen E02144 E01777 E02529
按ROE排序
edinet-mcp screen E02144 E01777 E02529 --sort-by ROE
JSON格式输出
edinet-mcp screen E02144 E01777 --format json
测试连接
bash
edinet-mcp test
报表类型
| 类型 | 日文名称 | 关键项目 |
|---|
| incomestatement | 損益計算書 (PL) | 売上高, 営業利益, 純利益 |
| balancesheet |
貸借対照表 (BS) | 総資産, 純資産, 負債 |
| cash
flowstatement | CF計算書 | 営業CF, 投資CF, 財務CF |
工作流程
- 1. edinet-mcp search <公司> → 查找EDINET代码
- edinet-mcp statements -c <代码> -p <年份> → 查看财务数据
- edinet-mcp screen <代码1> <代码2> ... → 比较多家公司
重要说明
- - -p(期间)参数是提交年份,而非会计年度。3月决算的公司于次年6月提交:2023财年数据 → -p 2024。
- 涵盖J-GAAP / IFRS / US-GAAP的161个标准化标签。
- 结果包含当期(当期)和前期(前期)数据。
- 默认请求频率限制为0.5次/秒。筛选10家公司约需1-2分钟。
- 每次筛选请求最多20家公司。
设置
- - 需要设置EDINETAPIKEY环境变量
- 免费API密钥:https://disclosure2dl.edinet-fsa.go.jp/
- Python包:pip install edinet-mcp 或 uv tool install edinet-mcp