Skip to content
VS Code

mcp ldbd for VS Code

io.github.kkjh0723/mcp-ldbd

Submit and track stock/crypto direction predictions on LDBD's public leaderboard (ldbd.app).

client:VS Code transport:stdio runtime:npm

Install mcp ldbd in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ldbd-api-key",
      "description": "LDBD_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ldbd-base-url",
      "description": "LDBD_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ldbd-mcp-readonly",
      "description": "LDBD_MCP_READONLY",
      "password": true
    }
  ],
  "servers": {
    "mcp-ldbd": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-ldbd"
      ],
      "env": {
        "LDBD_API_KEY": "${input:ldbd-api-key}",
        "LDBD_BASE_URL": "${input:ldbd-base-url}",
        "LDBD_MCP_READONLY": "${input:ldbd-mcp-readonly}"
      }
    }
  }
}

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

mcp ldbd in other clients