ecos_series_items

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

List the items (sub-series) within a Bank of Korea ECOS statistic table. Most stat_codes have multiple sub-items (e.g., the exchange-rate table has rows per currency: USD, JPY, EUR, …). Pass the stat_code from ecos_search_tables; returns item_code, item_name, cycle, data_count, start/end period. Use to discover the exact item codes needed by ecos_get_series.

Parameters

NameTypeRequiredDescription
stat_codestringyesStatistic table code from ecos_search_tables (e.g., “731Y001” for exchange rates).
limitnumbernoMax items to return (default 30, max 100).

Example call

Arguments

{
  "stat_code": "731Y001",
  "limit": 30
}

curl

curl -X POST https://gateway.pipeworx.io/ecos-kr/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ecos_series_items","arguments":{"stat_code":"731Y001","limit":30}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ecos_series_items', {
  "stat_code": "731Y001",
  "limit": 30
});

Connect

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

{
  "mcpServers": {
    "ecos-kr": {
      "url": "https://gateway.pipeworx.io/ecos-kr/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026