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
| Name | Type | Required | Description |
|---|---|---|---|
date | string | yes | Filing date (JST) as YYYY-MM-DD. EDINET keeps the last 10 years. |
edinet_code | string | no | Keep only this filer, e.g. “E02144”. |
sec_code | string | no | Keep only this securities code / ticker, e.g. “7203”. |
doc_type_code | string | no | Keep only this EDINET document-type code, e.g. “120” (annual securities report). |
xbrl_only | boolean | no | Keep only filings that have XBRL. Default false. |
limit | number | no | Max filings to return, 1-500. Default 50. |
_apiKey | string | yes | EDINET 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.