Skip to content
VS Code

Toss Invest for VS Code

io.github.wi9ine/toss-invest

Access Toss Securities market, account, and opt-in trading APIs through MCP.

client:VS Code transport:stdio runtime:npm

Install Toss Invest in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "toss-client-id",
      "description": "TOSS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "toss-client-secret",
      "description": "TOSS_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "toss-invest": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wi9ine/toss-invest-mcp"
      ],
      "env": {
        "TOSS_CLIENT_ID": "${input:toss-client-id}",
        "TOSS_CLIENT_SECRET": "${input:toss-client-secret}"
      }
    }
  }
}

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

Toss Invest in other clients