Skip to content
VS Code

KLinePic for VS Code

io.github.sher1096/klinepic

Create annotated candlestick charts from broker or exchange fills for post-trade review.

client:VS Code transport:stdio runtime:oci

Install KLinePic in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kline-agent-api-key",
      "description": "KLINE_AGENT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "klinepic": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/sher1096/klinepic-mcp-server:0.1.0"
      ],
      "env": {
        "KLINE_AGENT_API_KEY": "${input:kline-agent-api-key}"
      }
    }
  }
}

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

KLinePic in other clients