Skip to content
VS Code

FutPicks for VS Code

io.github.khavel/futpicks

Probable football lineups with start probability and expected fantasy points, graded in public.

client:VS Code transport:stdio runtime:npm

Install FutPicks in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "futpicks-api-url",
      "description": "FUTPICKS_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "futpicks-api-key",
      "description": "FUTPICKS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "futpicks-ops-token",
      "description": "FUTPICKS_OPS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "futpicks": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "futpicks-mcp"
      ],
      "env": {
        "FUTPICKS_API_URL": "${input:futpicks-api-url}",
        "FUTPICKS_API_KEY": "${input:futpicks-api-key}",
        "FUTPICKS_OPS_TOKEN": "${input:futpicks-ops-token}"
      }
    }
  }
}

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

FutPicks in other clients