edinet_list_filings

Pack: edinet · Endpoint: https://gateway.pipeworx.io/edinet/mcp

Every 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 and which formats (XBRL / PDF / CSV / English) exist. Optionally filter to one filer or document type. Requires a free EDINET Subscription-Key via _apiKey. Example: edinet_list_filings({ date: “2026-09-11”, limit: 20 }).

Parameters

NameTypeRequiredDescription
datestringyesFiling date (JST) as YYYY-MM-DD. EDINET keeps the last 10 years.
edinet_codestringnoKeep only this filer, e.g. “E02144”.
sec_codestringnoKeep only this securities code / ticker, e.g. “7203”.
doc_type_codestringnoKeep only this EDINET document-type code, e.g. “120” (annual securities report).
xbrl_onlybooleannoKeep only filings that have XBRL. Default false.
limitnumbernoMax filings to return, 1-500. Default 50.
_apiKeystringyesEDINET API v2 Subscription-Key.

Example call

Arguments

{
  "date": "2026-09-11",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/edinet/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"edinet_list_filings","arguments":{"date":"2026-09-11","limit":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('edinet_list_filings', {
  "date": "2026-09-11",
  "limit": 20
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "edinet": {
      "url": "https://gateway.pipeworx.io/edinet/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 16, 2026