MCP Server
Maintained
MIT
io.github.bjornj12/golf-coach MCP Server
io.github.bjornj12/golf-coach
What is the io.github.bjornj12/golf-coach MCP server?
A stats-driven golf coach: Trackman + on-course rounds, turned into a practice plan.
How to install io.github.bjornj12/golf-coach
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
TRACKMAN_TOKENsecretBearer access token captured from an authenticated Trackman portal session. Optional if you have run `golf-coach login` (the server then loads the cached token automatically).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"golf-coach": {
"command": "uvx",
"args": [
"golf-coach"
],
"env": {
"TRACKMAN_TOKEN": "<YOUR_TRACKMAN_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"golf-coach": {
"command": "uvx",
"args": [
"golf-coach"
],
"env": {
"TRACKMAN_TOKEN": "<YOUR_TRACKMAN_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"golf-coach": {
"command": "uvx",
"args": [
"golf-coach"
],
"env": {
"TRACKMAN_TOKEN": "<YOUR_TRACKMAN_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"golf-coach": {
"type": "stdio",
"command": "uvx",
"args": [
"golf-coach"
],
"env": {
"TRACKMAN_TOKEN": "<YOUR_TRACKMAN_TOKEN>"
}
}
}
}Claude Code
claude mcp add golf-coach --env TRACKMAN_TOKEN=<YOUR_TRACKMAN_TOKEN> -- uvx golf-coachRelated MCP servers
Fetch your Trackman Golf stats (handicap, rounds, shots, club gapping) as MCP tools.
0
View repository →Python
MIT