New:Socket for Asana Is Now Available.Learn more
Sign In

official-krw

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

official-krw

Korea Eximbank exchange rate MCP server

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

official-krw

MCP server for Korea Eximbank (한국수출입은행) official exchange rates.

Setup

  • Get a free API key from Korea Eximbank Open API

  • Add to your MCP config (e.g. ~/.claude/claude_desktop_config.json or Claude Code settings):

{
  "mcpServers": {
    "official-krw": {
      "command": "npx",
      "args": ["-y", "official-krw"],
      "env": {
        "KOREAEXIM_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Tool: get_exchange_rates

ParameterTypeDefaultDescription
search_datestringtodayDate in yyyy-MM-dd format
querystringUSD filterJSONata expression to filter the raw response

Default filter (when query is omitted): returns only USD with cur_unit, cur_nm, kftc_deal_bas_r, and deal_bas_r.

Response fields

FieldDescription
cur_unitCurrency code (e.g. USD, EUR, JPY(100))
cur_nmCurrency name in Korean
deal_bas_rStandard exchange rate (매매 기준율)
kftc_deal_bas_rKFTC standard rate (서울외국환중개 매매기준율)
ttbTelegraphic Transfer Buying rate (송금 받을 때)
ttsTelegraphic Transfer Selling rate (송금 보낼 때)
bkprBook price (장부가격)
kftc_bkprKFTC book price

JSONata query examples

# All currencies
$

# All USD fields
$[cur_unit='USD']

# EUR rate
$[cur_unit='EUR'].deal_bas_r

# JPY rate
$[cur_unit='JPY(100)'].kftc_deal_bas_r

# Multiple currencies, specific fields
$[cur_unit in ['USD','EUR']].{"cur_unit": cur_unit, "deal_bas_r": deal_bas_r}

FAQs

Package last updated on 02 Apr 2026

Related posts