ecos_search_tables

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

Search Bank of Korea ECOS statistic tables — 800+ official Korean economic series across monetary policy, exchange rates, prices, balance of payments, GDP, real estate, household credit, etc. Returns stat_code + Korean name + cycle (A annual / Q quarterly / M monthly / D daily). Use as a directory before ecos_get_series. q is matched substring-wise against the Korean name; pass blank to browse top-N.

Parameters

NameTypeRequiredDescription
qstringnoKorean substring to match against stat names. Empty = browse top-N.
limitnumbernoMax rows to return (default 30, max 100).

Example call

Arguments

{
  "q": "환율",
  "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_search_tables","arguments":{"q":"환율","limit":30}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ecos_search_tables', {
  "q": "환율",
  "limit": 30
});

More examples

{
  "q": "",
  "limit": 20
}

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