Skip to content
VS Code

pitstop for VS Code

io.github.praneethravuri/pitstop

F1 MCP server: live timing, telemetry, standings, news, and a queryable 1950-present database.

client:VS Code transport:stdio runtime:pypi

Install pitstop in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pitstop-transport",
      "description": "PITSTOP_TRANSPORT",
      "password": true
    }
  ],
  "servers": {
    "pitstop": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pitstop-f1"
      ],
      "env": {
        "PITSTOP_TRANSPORT": "${input:pitstop-transport}"
      }
    }
  }
}

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

pitstop in other clients