dart_company_info

Pack: dart-kr · Endpoint: https://gateway.pipeworx.io/dart-kr/mcp

Basic profile for a Korean DART-registered company: corp_name (Korean + English), KRX stock_code if listed, CEO name, market tier (KOSPI/KOSDAQ/KONEX/etc.), industry code, address, founding date, fiscal-year-end month, homepage. Use after dart_search_filings to enrich a corp_code into a readable entity, or as the first lookup when an agent is given a corp_code with no other context.

Parameters

NameTypeRequiredDescription
corp_codestringyesRequired 8-digit DART corp identifier.

Example call

Arguments

{
  "corp_code": "00126380"
}

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_company_info","arguments":{"corp_code":"00126380"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dart_company_info', {
  "corp_code": "00126380"
});

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.

Regenerated from source · build September 2, 2026