loading…
Search for a command to run...
loading…
Bridges Suunto watch data to AI assistants like Claude, enabling natural language queries about workouts, sleep, and recovery.
Bridges Suunto watch data to AI assistants like Claude, enabling natural language queries about workouts, sleep, and recovery.
CI License: MIT suunto-mcp MCP server
Ask Claude anything about your training. Suunto MCP connects your Suunto watch data to Claude so you can just talk to your data instead of clicking through dashboards.
Built by a Suunto user who wanted to ask "how was my last long run?" and get a real answer with numbers — and to feed live training data into a personal AI coach.
🏃 For regular Suunto users: Suunto's API docs say access is for commercial partners only — that's not the full picture. Private users get access too. It just takes 3–4 weeks for approval after you apply. Submit, wait, enjoy. Don't let that disclaimer stop you. ✅
Once it's set up, just ask:
Claude figures out what data to pull. You just ask.
If you already have Claude Code, you don't need to run a single terminal command. Just open it and say:
"Please install and set up suunto-mcp from https://github.com/googlarz/suunto-mcp"
Claude Code will clone the repo, run all the install commands, walk you through the apizone signup step by step, and add everything to your Claude Desktop config — on its own. That's exactly how this project's author set it up: no manual terminal work.
You'll still need to create the apizone account and click Authorize yourself (Claude can't enter your passwords), but it'll tell you exactly what to do and when.
If you want to do it manually, keep reading.
Before starting, make sure you have:
Once it's done, you never redo it.
The setup has three parts:
Suunto has a free developer portal called apizone where you register apps that can access your data. You'll create an account, subscribe to the data plan, and register a small "app" — don't worry, there's nothing to build, it's just a name and a password you make up.
Go to apizone.suunto.com and sign up or sign in.
Use the same email you use for the Suunto app. If you have a Sports Tracker account, that works too — it's the same login system.
After signing in, follow the How to start guide — it walks you through subscribing to the Developer API. This is free and gives you access to your workout history.
Heads up: Suunto's website states that API access is only for commercial partners — ignore that. Private users do get access, it just takes 3–4 weeks for the subscription to be approved. Submit it and wait. It will come through.
You may see other products like "Sleep API", "Recovery API", "Daily Activity API". Skip those for now — the Developer API is enough to get started. You can add the others later if you want sleep and recovery data in Claude.
⏳ Stop here and wait. Once you've subscribed, Suunto needs to approve your request. This takes 3–4 weeks. You'll get an email when it's done. Come back to Steps 3–4 only after your subscription shows as Active in your apizone profile.
You're going to tell Suunto: "I have a small program, here's its name and a secret password — please let it read my data."
Go to your apizone profile page
Scroll down to OAuth application settings
Fill in the form:
| Field | What to enter |
|---|---|
| App name | suunto-mcp (or anything you like) |
| Client secret | Make up a unique password — something only you'd know, e.g. alice-suunto-2026 with your own name. Write it down. Don't use this exact example. |
| Redirect URI | http://localhost:8421/callback — copy this exactly |
Click Save
After saving, the form shows a Client ID — a long code that Suunto generated for you. Copy it.
What are these three things? — Client ID: your app's username, generated by Suunto — Client Secret: your app's password, chosen by you — Redirect URI: where Suunto sends you back after you approve access — must match exactly, typos break it
The Client Secret is never shown again after you save. If you forget it, just set a new one in the same form.
The subscription key is a second passcode that goes on every data request. Here's how to find it:
Save all three values before continuing — you'll need them in Part 2:
Open Terminal on Mac (press ⌘Space and type "Terminal") or Command Prompt on Windows. Then run these commands one at a time:
git clone https://github.com/googlarz/suunto-mcp
cd suunto-mcp
npm install
npm run build
This downloads the code, installs what it needs, and builds it. Takes 1–2 minutes. If you see any errors, check the Troubleshooting section.
You'll create a file called .env in the suunto-mcp folder and put your three values in it.
On Mac:
cp .env.example .env
open -e .env
This copies the template and opens it in TextEdit. Replace each placeholder with your actual values, then save and close.
On Windows:
copy .env.example .env
notepad .env
The file looks like this — replace the parts after the = signs:
SUUNTO_CLIENT_ID=your-client-id-here
SUUNTO_CLIENT_SECRET=your-client-secret-here
SUUNTO_SUBSCRIPTION_KEY=your-subscription-key-here
Save and close the file.
npm run auth
Here's exactly what happens:
① Terminal — you see a long URL printed and the message "Opening Suunto authorization in your browser…"
② Browser opens — Suunto's login page appears. It looks identical to the Suunto app login: email + password fields at the top, then "Sign in with Apple" and "Sign in with Facebook" below. Sign in with whichever you use.
③ Permissions screen — after logging in, a screen appears asking you to approve access for "suunto-mcp". It lists what the app will be able to read (your workouts). Click Authorize.
④ Browser confirmation — the page shows: "Suunto MCP connected. You can close this tab."
⑤ Terminal confirmation — prints: "Paired successfully. Tokens saved."
Done — you won't need to do this again. The connection stays active and renews itself automatically.
Browser didn't open automatically? Copy the long URL from the terminal and paste it into your browser manually.
npm run doctor
This runs a health check. You should see output like:
Suunto MCP — health check
✓ Node version 20.18.0 (require ≥ 20)
✓ Credentials client_id, client_secret, subscription_key set
✓ Network reachability reachable
✓ Pairing paired (user: your-username), token expires in 47 min
✓ API probe (workouts) received 1 workout
If any line shows ✗, the message tells you exactly what to fix. Resolve any issues before moving on.
Now you'll tell Claude Desktop where to find Suunto MCP.
Open this file in a text editor (create it if it doesn't exist yet):
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonQuick way on Mac — run this in Terminal:
mkdir -p ~/Library/Application\ Support/Claude && open -e ~/Library/Application\ Support/Claude/claude_desktop_config.json
Quick way on Windows — run this in Command Prompt:
notepad "%APPDATA%\Claude\claude_desktop_config.json"
(If it asks "file not found — create it?", click Yes.)
First, find the actual path to the suunto-mcp folder. In Terminal, while inside the folder, run:
pwd
It'll print something like /Users/yourname/suunto-mcp. Copy that.
Now paste the following into the config file. Replace /Users/yourname/suunto-mcp with the path you got from pwd, and replace the credential placeholders with your actual values.
If the file already has other servers configured, don't replace the whole file — just add the
"suunto"section alongside them. The structure must be valid JSON, so keep all the curly braces balanced. When in doubt, compare your file to the example below.If the file is empty, paste the whole block as-is.
{
"mcpServers": {
"suunto": {
"command": "node",
"args": ["/Users/yourname/suunto-mcp/dist/index.js"],
"env": {
"SUUNTO_CLIENT_ID": "your-client-id",
"SUUNTO_CLIENT_SECRET": "your-client-secret",
"SUUNTO_SUBSCRIPTION_KEY": "your-subscription-key"
}
}
}
}
Save the file.
Quit Claude Desktop and reopen it. Then ask:
"What was my most recent workout?"
If Claude answers with your actual sport, date, and distance — you're all set!
You: Compare my last three long runs. Has my heart-rate drift improved?
Claude: Looking up your workouts…
Found 3 runs over 90 minutes in the last 6 weeks:
• Apr 12 — 22.4 km, 2h09, avg HR 148, last-30min drift +6 bpm
• Apr 19 — 24.0 km, 2h21, avg HR 144, last-30min drift +4 bpm
• Apr 26 — 25.1 km, 2h28, avg HR 142, last-30min drift +2 bpm
Drift is trending down despite slightly longer runs — your aerobic
base is improving. Pace at the same HR is also ~3 s/km faster.
| Category | What you can ask about | Requires |
|---|---|---|
| Workouts | Any recorded activity — runs, hikes, rides, swims, ski tours. Distance, time, heart rate, pace, elevation, GPS route, power. | Developer API (already subscribed) |
| Sleep | Sleep duration, stages (light/deep/REM), sleep score. | Sleep API subscription on apizone |
| Recovery | HRV, recovery status, stress balance. | Recovery API subscription on apizone |
| Daily activity | Steps, calories, 24/7 heart rate. | Daily Activity API subscription on apizone |
To add sleep, recovery, or daily activity: go back to apizone.suunto.com, find each product, and subscribe. Then run npm run doctor to confirm they're active.
Always run npm run doctor first — it pinpoints most problems automatically.
| What you see | What it means | How to fix it |
|---|---|---|
| Claude returns an error or nothing | Something isn't connected yet | Run npm run doctor and fix any lines with ✗ |
| Empty workout list | Watch hasn't synced recently | Open the Suunto app on your phone and wait for the sync to complete |
| "Not authenticated" | The pairing step didn't finish | Run npm run auth again |
| You logged in but nothing happened | The browser tab closed or timed out before Suunto confirmed | Close all Suunto tabs and run npm run auth again — click Authorize promptly |
| "Token request failed" or "400 error" | Client Secret or Redirect URI don't match apizone | Go to apizone → profile → OAuth application settings and confirm both values match exactly |
| "401" error on every request | Subscription key is wrong or incomplete | Go to apizone → profile → Subscriptions, reveal and re-copy the Primary Key |
| "403 Forbidden" on workouts | Developer API subscription isn't active | Sign in to apizone and confirm it's listed as Active |
| Sleep / recovery / activity returns "not found" | Those need separate subscriptions | Go to apizone and subscribe to the Sleep, Recovery, or Daily Activity API |
| Got an SSL error after Apple sign-in | Known Suunto quirk with Apple login | Close the error tab, go back to the auth URL the terminal printed, and continue |
| "State mismatch" error | A second auth flow started before the first finished | Close all auth-related tabs and run npm run auth fresh |
npm run build failed with an error |
Node.js version too old or not installed | Run node --version — it must be 20 or higher. Reinstall from nodejs.org |
| Terminal says "EADDRINUSE" or port in use | Something else is using port 8421 | Restart your computer, or run lsof -i :8421 to see what's using it |
Is this safe? Will Suunto lock my account? Suunto built this API specifically for people to connect their own tools — it's explicitly allowed. You're using it exactly as intended.
Is my data leaving my computer? Your data travels directly between your computer and Suunto's servers. Suunto MCP is just the bridge. When Claude asks about your workouts, it goes: Claude → Suunto MCP (on your machine) → Suunto's servers → back. No third-party services see your data.
Which Suunto watches work? Any watch that syncs to the Suunto app: Race, Vertical, 9 Peak Pro, 9 Peak, 5 Peak, Wing, Ocean, and older models. If it appears in your Suunto app, it works here.
Do I need to do anything when I record a new workout? No. Just ask Claude — it always pulls live data from Suunto.
What if I want to disconnect and stop using this? See Disconnecting below. You can fully revoke access in under a minute.
Can I use this with AI apps other than Claude? Yes — anything that supports MCP: Claude Code, Cursor, Windsurf, and others.
My Suunto app username is different from my email — which do I use? Use your email address to sign in to apizone. Your username will appear once you're authenticated.
~/.suunto-mcp/tokens.json — not uploaded anywhere.To fully remove access:
rm -f ~/.suunto-mcp/tokens.json
"suunto" block from your Claude config and restart Claude.If you use googlarz/health-skill — a Claude skill for symptom triage and health Q&A — Suunto MCP gives it a live feed of your training, sleep, and recovery data. Together they can answer questions like "given my recovery scores this week, should I keep tomorrow's interval session?" with real numbers.
Edit ~/.claude/mcp_config.json and add the same "suunto" block from Step 10. Then run claude mcp list to verify it's loaded.
After building, you can query Suunto data directly without Claude:
suunto-mcp list-workouts --limit 10
suunto-mcp get-workout <workoutKey>
suunto-mcp export-workout-gpx <workoutKey> > route.gpx
suunto-mcp get-sleep 2026-04-20
suunto-mcp list-recovery --from 2026-04-01 --to 2026-04-30
All output is JSON — pipe into jq for filtering.
npm run webhook
Starts an HTTP receiver on port 8422 that logs workout events as they arrive. Expose it to the internet (cloudflared, ngrok, your own server) and register the URL in apizone → webhooks.
Most users can skip this — asking Claude on demand is simpler.
To store your Suunto login tokens in your OS keychain (macOS Keychain, Windows Credential Manager) instead of a file:
SUUNTO_TOKEN_STORAGE=keychain npm install @napi-rs/keyring
SUUNTO_TOKEN_STORAGE=keychain npm run auth
Claude picks the right tool automatically — you don't need to know these. For the curious:
Workouts
| Tool | What it does |
|---|---|
list_workouts |
Recent workouts, filter by date or sport |
get_workout |
Full summary for one workout |
get_workout_samples |
Time-series: HR, pace, altitude, power, GPS per second |
get_workout_fit |
Raw FIT file decoded to structured data |
export_workout_gpx |
GPX route export for maps, Strava, route planning |
24/7 health (requires individual product subscriptions on apizone)
| Tool | What it does |
|---|---|
get_daily_activity / list_daily_activity |
Steps, calories, daily heart rate |
get_sleep / list_sleep |
Sleep stages, duration, score |
get_recovery / list_recovery |
Recovery score, HRV, stress balance |
get_daily_activity_statistics |
Aggregated daily stats over a date range |
MIT — use it, fork it, improve it.
Run in your terminal:
claude mcp add suunto-mcp -- npx Yes, Suunto MCP is free — one-click install via Unyly at no cost.
No, Suunto runs without API keys or environment variables.
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
Open Suunto on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
CSA PROJECT - FZCO © 2026 IFZA Business Park, DDP, Premises Number 31174 - 001
Security
Low riskAutomated heuristic from public metadata — not a security guarantee.