dart_search_filings
Pack: dart-kr · Endpoint: https://gateway.pipeworx.io/dart-kr/mcp
Recent Korean corporate disclosures filed to DART, Korea’s official filing system.
Tool description as the model sees it
AUTHORITATIVE list of recent Korean corporate disclosures filed to DART (Korea’s SEC equivalent). Returns rcept_no (receipt ID), rcept_dt (filing date), corp_name, report_nm (disclosure title), corp_code. Filter by company via corp_code (e.g., “00126380” Samsung Electronics; see pack docstring for major chaebol codes), filing date range, or filing type. Use for “what did Samsung file last week”, “recent KOSPI material events”, “this quarter’s ownership changes”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
corp_code | string | no | 8-digit DART corp identifier (Samsung 00126380, SK Hynix 00164779, etc.). Omit to list filings across ALL companies in the date range. |
bgn_de | string | no | Filing date start (YYYYMMDD). Defaults to 30 days ago when omitted. |
end_de | string | no | Filing date end (YYYYMMDD). Defaults to today when omitted. |
pblntf_ty | string | no | Disclosure category: A (periodic report), B (major events), C (issuance), D (ownership change), E (audit), F (fund), G (asset-backed securities), H (foreign), I (subscriber). Omit for all. |
page_no | number | no | Page number (1-based, default 1). |
page_count | number | no | Results per page (1-100, default 10). |
Example call
Arguments
{
"corp_code": "00126380",
"bgn_de": "20240101",
"end_de": "20240131",
"pblntf_ty": "B"
}
curl
curl -X POST https://gateway.pipeworx.io/dart-kr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dart_search_filings","arguments":{"corp_code":"00126380","bgn_de":"20240101","end_de":"20240131","pblntf_ty":"B"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dart_search_filings', {
"corp_code": "00126380",
"bgn_de": "20240101",
"end_de": "20240131",
"pblntf_ty": "B"
});
More examples
{
"bgn_de": "20240115",
"end_de": "20240131",
"page_count": 20
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dart-kr": {
"url": "https://gateway.pipeworx.io/dart-kr/mcp"
}
}
}
See Getting Started for client-specific install steps.