trackman mcp for VS Code
io.github.bjornj12/trackman-mcp
Fetch your Trackman Golf stats (handicap, rounds, shots, club gapping) as MCP tools.
client:VS Code
transport:stdio
runtime:pypi
Install trackman mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "trackman-token",
"description": "TRACKMAN_TOKEN",
"password": true
}
],
"servers": {
"trackman-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"trackman-mcp"
],
"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