edinet_company_filings
Pack: edinet · Endpoint: https://gateway.pipeworx.io/edinet/mcp
All 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. Identify the company with edinet_search_filers first. Requires a free EDINET Subscription-Key via _apiKey. Example: edinet_company_filings({ edinet_code: “E02144”, from: “2026-06-01”, to: “2026-06-30” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
edinet_code | string | no | EDINET code of the filer, e.g. “E02144” (Toyota). |
sec_code | string | no | Securities code / ticker instead of an EDINET code, e.g. “7203”. |
from | string | yes | Start date (JST) as YYYY-MM-DD. |
to | string | yes | End date (JST) as YYYY-MM-DD, at most 31 days after from. |
_apiKey | string | yes | EDINET API v2 Subscription-Key. |
Example call
Arguments
{
"edinet_code": "E02144",
"from": "2026-06-01",
"to": "2026-06-30"
}
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_company_filings","arguments":{"edinet_code":"E02144","from":"2026-06-01","to":"2026-06-30"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('edinet_company_filings', {
"edinet_code": "E02144",
"from": "2026-06-01",
"to": "2026-06-30"
});
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.