Skip to content
VS Code

carrydesk for VS Code

io.github.pelazas/carrydesk

Funding-carry rankings for Hyperliquid perps, metered per call in USDC via x402.

client:VS Code transport:stdio runtime:pypi

Install carrydesk in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "carrydesk-private-key",
      "description": "CARRYDESK_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "carrydesk-api-base",
      "description": "CARRYDESK_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "carrydesk": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "carrydesk"
      ],
      "env": {
        "CARRYDESK_PRIVATE_KEY": "${input:carrydesk-private-key}",
        "CARRYDESK_API_BASE": "${input:carrydesk-api-base}"
      }
    }
  }
}

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

carrydesk in other clients