Skip to content
VS Code

golf coach for VS Code

io.github.bjornj12/golf-coach

A stats-driven golf coach: Trackman + on-course rounds, turned into a practice plan.

client:VS Code transport:stdio runtime:pypi

Install golf coach in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "trackman-token",
      "description": "TRACKMAN_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "golf-coach": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "golf-coach"
      ],
      "env": {
        "TRACKMAN_TOKEN": "${input:trackman-token}"
      }
    }
  }
}

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

golf coach in other clients