EDINET (Japan)
liveGovernmentJapanese corporate filings from EDINET, the Financial Services Agency's counterpart to SEC EDGAR — securities reports (有価証券報告書), quarterly and extraordinary reports, large-shareholding reports and tender offers, with the XBRL / PDF / CSV documents behind each. Resolving a company to its EDINET code needs no credential; the two filing-list tools require an EDINET API key (a free Subscription-Key from the FSA), passed as _apiKey.
Tools
edinet_search_filersResolve a Japanese company to its EDINET code and securities code from the FSA's official EDINET filer list — the lookup every other EDINET call needs. Searches Japanese name, English name, kana, EDIN
No parameters required.
Try it
edinet_list_filingsEvery disclosure document filed with EDINET on one day — annual and quarterly securities reports, extraordinary reports, large-shareholding reports, tender offers — with filer, document type, period a
No parameters required.
Try it
edinet_company_filingsAll EDINET filings by one Japanese company over a date range of up to 31 days, newest first. EDINET has no company-search endpoint, so this walks the daily filing lists and keeps that filer's rows. Id
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/edinet/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/edinet/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"edinet_search_filers","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("edinet_search_filers", {});// Or ask in plain English:
const answer = await px.ask("japanese corporate filings from edinet, the financial services agency's counterpart to sec edgar — securities reports (有価証券報告書), quarterly and extraordinary reports, large-shareholding reports and tender offers, with the xbrl / pdf / csv documents behind each");