Skip to content
VS Code

orcalayer mcp for VS Code

io.github.orcalayer/orcalayer-mcp

Polymarket smart-money analytics: whale leaderboard, wallet P&L, market consensus, live alerts

client:VS Code transport:stdio runtime:pypi

Install orcalayer mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "orcalayer-api-key",
      "description": "ORCALAYER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "orcalayer-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "orcalayer-mcp"
      ],
      "env": {
        "ORCALAYER_API_KEY": "${input:orcalayer-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

orcalayer mcp in other clients