Skip to content
VS Code

Market Depth Lab for VS Code

io.github.derkcc/market-depth-lab

Read-only Hyperliquid, funding-rate and cross-exchange perpetual spread tools.

client:VS Code transport:stdio runtime:npm

Install Market Depth Lab in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mdl-position-index-url",
      "description": "MDL_POSITION_INDEX_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mdl-position-index-path",
      "description": "MDL_POSITION_INDEX_PATH",
      "password": true
    }
  ],
  "servers": {
    "market-depth-lab": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "market-depth-lab-mcp-server"
      ],
      "env": {
        "MDL_POSITION_INDEX_URL": "${input:mdl-position-index-url}",
        "MDL_POSITION_INDEX_PATH": "${input:mdl-position-index-path}"
      }
    }
  }
}

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

Market Depth Lab in other clients