golf-reports
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@golf-reportsrender my last round as a PDF"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Golf Reports
A self-contained golf-data skill: pulls your own data from Arccos (shot-level
strokes-gained), GHIN (official handicap + scores), and 18Birdies (export import), then renders any round to an HTML report (satellite shot map + stats) and a shot-map PDF. Login-based — no browser DevTools. Runs locally, so it works inside the Claude Desktop app (Chat / Cowork / Code) via a local MCP server.
Why local: the Cowork cloud sandbox can't reach the golf APIs or your files. The engine runs on your machine and exposes tools to Claude. (Architecture vetted with Codex.)
What's inside
ingest/ pull_arccos.py · pull_ghin.py · pull_18birdies.py (login-based, no DevTools)
render/ gen_combined · gen_stats · gen_satellite · gen_gps_pdf · build_round_pages
mcp/ server.py (MCP tools: list_rounds, round_stats, render_round, sync_*, …)
skills/ golf-reports/SKILL.md
setup.py one-time login wizard
manifest.json / .claude-plugin/plugin.json packaging1. One-time setup (no DevTools)
pip install -r requirements.txt
python3 setup.py # prompts for Arccos + GHIN email/password, optional 18Birdies exportCredentials are stored only on your machine (~/.arccos_creds.json,
~/.ghin_creds.json, chmod 600) and never uploaded. Arccos stores a long-lived
accessKey (password discarded); GHIN stores the login (needed for its 12h token).
2. Use it in the Claude Desktop app
Cowork / Chat (recommended for non-devs): install as a one-click Desktop Extension (the local MCP server) — Customize → Browse plugins/extensions → add this package. Then ask: "sync my golf data", "how was my last round?", "render my latest round as a PDF I can send."
Manual MCP config (alternative): add to claude_desktop_config.json:
{ "mcpServers": { "golf-reports": {
"command": "python3", "args": ["/ABSOLUTE/PATH/golf-reports/mcp/server.py"],
"env": { "GOLF_STORE": "/ABSOLUTE/PATH/golf-data",
"GOLF_INGEST": "/ABSOLUTE/PATH/golf-reports/ingest",
"PYTHONPATH": "/ABSOLUTE/PATH/golf-reports/render" } } } }Claude Code (Code tab / CLI): /plugin marketplace add <your-gh>/golf-reports
then /plugin install golf-reports, or copy skills/golf-reports into ~/.claude/skills/.
3. CLI (works anywhere, no Claude)
cd render
python3 build_round_pages.py <store-dir-or-git-url> ./out --all --split
# -> <course>_<date>_report.html + _shotmaps.pdf (+ _stats.html + _map.html)Notes & provenance
Strokes gained (by category / 15-yd band / hole) is measured (Arccos, vs scratch). Putting make % and approach proximity are derived heuristics. Peer carry is vs a modeled ~12-HCP table — edit
render/peer_config.json.Satellite tiles (Esri) load only when the HTML is opened in a browser; the PDF is the reliable offline/shareable artifact. GPS is optional at every layer (map omitted / PDF falls back to a distance schematic).
Privacy: credentials, raw data, and reports stay local. Nothing is published.
Verify on Desktop (do these first — the parts that can't be tested headless)
Install the extension and confirm a tool (e.g.
list_rounds) appears + runs from the Cowork tab on your OS/plan.From the running MCP server, confirm
sync_arccos/sync_ghinreach the APIs and write files.On a clean machine without developer Python, confirm
matplotlibPDF generation works after install (bundle an embedded Python / PyInstaller if not — the riskiest packaging step).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrisdecali/golf-reports'
If you have feedback or need assistance with the MCP directory API, please join our Discord server