Skip to content
VS Code

Kiwoom Securities MCP Server for VS Code

io.github.chunsam/kiwoom-mcp-server

Read-only MCP server for the Kiwoom Securities REST API: market data, account inquiry, ISA tax tool

client:VS Code transport:stdio runtime:npm

Install Kiwoom Securities MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kiwoom-app-key",
      "description": "KIWOOM_APP_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kiwoom-app-secret",
      "description": "KIWOOM_APP_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kiwoom-mode",
      "description": "KIWOOM_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "isa-enabled",
      "description": "ISA_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "kiwoom-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kiwoom-mcp-server"
      ],
      "env": {
        "KIWOOM_APP_KEY": "${input:kiwoom-app-key}",
        "KIWOOM_APP_SECRET": "${input:kiwoom-app-secret}",
        "KIWOOM_MODE": "${input:kiwoom-mode}",
        "ISA_ENABLED": "${input:isa-enabled}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Kiwoom Securities MCP Server in other clients