edinet-mcp
Lets AI assistants query normalized financial statements (P/L, B/S, C/F) of 3,634 Japanese listed companies from official EDINET filings, unified across J-GAAP, IFRS, and US GAAP with English keys. Zero setup: npx -y edinet-mcp.
README
edinet-mcp
MCP server for Japanese company financials. Gives any MCP client (Claude Desktop, etc.) the main income statement, balance sheet and cash-flow items — normalized to English keys, in JPY — for ~3,600 listed Japanese (non-financial) companies, sourced from Japan's FSA EDINET annual securities reports.
- Free. No API key, no signup, no rate limit.
- Read-only: reads the public JSON at
https://edinet-api-base.pages.dev/api/— no re-fetching from EDINET, no local database. - Accounting standard auto-detected (IFRS / Japanese GAAP / US GAAP), consolidation and source document included.
Items that don't exist under a company's standard are returned as
nullwith a reason (no approximation).
Data attribution: EDINET (Financial Services Agency, Japan). Not investment advice.
Tools
| Tool | What it does |
|---|---|
search_company |
Find companies by name (EN/JA) or 4-digit code. Resolve a name → code. |
get_financials |
Up to 17 income-statement / balance-sheet / cash-flow items + metadata for one company. |
compare_companies |
Compare 2+ companies on selected metrics; also returns derived operating_margin_pct / net_margin_pct. |
list_companies |
Browse/filter the universe by industry and/or accounting_standard. |
Install & use with Claude Desktop
Option A — via npx (after this package is published to npm)
Add to claude_desktop_config.json
(~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"edinet": { "command": "npx", "args": ["-y", "edinet-mcp"] }
}
}
Option B — from source (no publish needed)
git clone https://github.com/reanimatedead/edinet-mcp.git && cd edinet-mcp
npm install && npm run build
{
"mcpServers": {
"edinet": { "command": "node", "args": ["/absolute/path/to/edinet-mcp/dist/server.js"] }
}
}
Restart Claude Desktop. Then try:
"Compare Toyota and Nintendo's operating margins."
Claude will call search_company → compare_companies and answer with real figures, e.g.
Toyota (7203) operating margin ≈ 7.4%, Nintendo (7974) ≈ 15.6% (FY ending 2026-03, values in JPY).
Tool usage examples
search_company — resolve a name/code to companies:
{ "name": "search_company", "arguments": { "query": "Toyota", "limit": 3 } }
// → { results: [ { sec_code: "7203", name_en: "TOYOTA MOTOR CORPORATION", accounting_standard: "IFRS", ... } ] }
get_financials — 17 items + metadata for one company:
{ "name": "get_financials", "arguments": { "code": "7974" } }
// → { company:{sec_code:"7974", name_en:"Nintendo Co., Ltd."},
// fiscal_year:{accounting_standard:"Japanese GAAP", ...},
// flat_values:{ revenue: 2313051000000, operating_income: 360117000000, ... },
// unavailable:[ { key:"equity_attributable_to_owners", reason:"..." } ] }
compare_companies — side-by-side + derived margins:
{ "name": "compare_companies", "arguments": { "codes": ["7203", "7974"] } }
// → companies: [
// { code:"7203", values:{revenue:50684952000000, operating_income:3766216000000, ...},
// derived_ratios:{ operating_margin_pct: 7.43, net_margin_pct: ... } },
// { code:"7974", ..., derived_ratios:{ operating_margin_pct: 15.57 } } ]
list_companies — browse/filter the universe:
{ "name": "list_companies", "arguments": { "accounting_standard": "US GAAP", "limit": 10 } }
// → { total_matched: 5, results: [ { sec_code:"6301", name_en:"KOMATSU LTD." }, ... ] }
All monetary values are in JPY (absolute yen). derived_ratios are computed from the served values (presentation only — no re-extraction).
Configuration
EDINET_API_BASE_URL(optional): override the data source base (defaulthttps://edinet-api-base.pages.dev/api).
Development
npm run dev # run from source (tsx)
npm test # unit tests (mocked fetch, offline)
npm run typecheck
npm run build # → dist/
node scripts/mcp-smoke.mjs # end-to-end MCP client smoke against live data
Publishing to npm — HUMAN_ACTION_REQUIRED
npm publish needs an authenticated npm account (browser/OTP) — it cannot be automated here.
The package is publish-ready (build output in dist, bin, files, English README). Steps:
cd edinet-mcp
npm login # HUMAN: browser/OTP auth
npm run build # ensure dist/ is fresh
npm publish --access public
After publishing, Option A (npx -y edinet-mcp) works for everyone.
Where to find it
- MCP Registry:
io.github.reanimatedead/edinet-mcp(manifest:server.json, validate withnpm run validate:server). - awesome-mcp-servers: listed under Finance & Fintech.
- Auto-indexed by Glama / PulseMCP (public repo,
mcptopic). Submission status & steps:docs/mcp-listing.md.
License
MIT. Underlying data © their sources; usage follows the EDINET terms of use.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.