Skip to content
VS Code

lsopenapi for VS Code

io.github.redoxnet/lsopenapi

LS Securities OpenAPI MCP server: Korean + overseas stocks, charts, screeners, portfolio, accounts.

client:VS Code transport:stdio runtime:nuget

Install lsopenapi in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ls-appkey",
      "description": "LS_APPKEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ls-appsecretkey",
      "description": "LS_APPSECRETKEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ls-market",
      "description": "LS_MARKET",
      "password": true
    }
  ],
  "servers": {
    "lsopenapi": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "RedoxNet.Mcp.LsOpenApi",
        "--yes"
      ],
      "env": {
        "LS_APPKEY": "${input:ls-appkey}",
        "LS_APPSECRETKEY": "${input:ls-appsecretkey}",
        "LS_MARKET": "${input:ls-market}"
      }
    }
  }
}

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

lsopenapi in other clients