S
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 7/29/2026, 12:28:57 PM

Suunto Mcp

googlarz
πŸƒ Sports
0 Views
0 Installs

πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - MCP server for Suunto watches via the official apizone API. OAuth2 pairing, list/get workouts, time-series samples, FIT-file decoding, GPX export, plus 24/7 activity, sleep, and recovery/HRV. Resources expose today's recovery and the week's training summary as ambient context.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "googlarz-suunto-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "googlarz-suunto-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Suunto MCP

Suunto MCP

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. βœ…


What you can do

Once it's set up, just ask:

  • "How many kilometers did I run this month?"
  • "Compare my last three long runs β€” has my heart-rate drift improved?"
  • "Pull the GPX of yesterday's trail run and write a short journal entry."
  • "What's my average resting HR trend over the last two weeks?"
  • "Summarize my training week in the style of a coaching report."
  • "I've been feeling off β€” how do my recovery scores compare to last month?"
  • "Find every workout where I averaged above 160 bpm."
  • "Which of my runs this year had the most elevation?"

Claude figures out what data to pull. You just ask.


πŸ€– Don't want to do this yourself? Let Claude Code install it

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.


What you need

Before starting, make sure you have:

  • A Suunto watch synced to the Suunto app (any modern model β€” Race, Vertical, 9 Peak, 5 Peak, Ocean, etc.)
  • Claude Desktop (or another MCP-compatible AI app)
  • Node.js β€” free, download here, choose the "LTS" version
  • Git β€” free, download here
  • ~5 min to submit + 3–4 week wait for Suunto approval + ~15 min to install

Once it's done, you never redo it.


Setup

The setup has three parts:

  1. Register with Suunto's developer portal β€” tells Suunto your app is allowed to read your data
  2. Install and configure β€” gets the software running on your computer
  3. Connect to Claude β€” lets the AI find and use it

Part 1: Register with Suunto's developer portal (~5 min to submit, then wait 3–4 weeks)

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.

Step 1: Create your apizone account

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.

Step 2: Subscribe to the Developer API

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.


Step 3: Register your app (do this after approval)

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."

  1. Go to your apizone profile page

  2. Scroll down to OAuth application settings

  3. Fill in the form:

    FieldWhat to enter
    App namesuunto-mcp (or anything you like)
    Client secretMake 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 URIhttp://localhost:8421/callback β€” copy this exactly
  4. 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.

Step 4: Get your subscription key (do this after approval)

The subscription key is a second passcode that goes on every data request. Here's how to find it:

  1. Still on the apizone profile page
  2. Scroll to the Subscriptions section
  3. Your Developer API subscription is listed there. Next to it you'll see a Primary Key β€” click the button next to it to reveal it, then copy the key.

Save all three values before continuing β€” you'll need them in Part 2:

  • Client ID (from the OAuth app form above)
  • Client Secret (the password you made up)
  • Subscription Key (from the Subscriptions section)

Part 2: Install and configure (~10 min, after Suunto approves you)

Step 5: Download the code

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.

Step 6: Add your credentials

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.

Step 7: Pair your Suunto account

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.

Step 8: Check everything is working

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.


Part 3: Connect to Claude Desktop (~5 min)

Now you'll tell Claude Desktop where to find Suunto MCP.

Step 9: Open the Claude config file

Open this file in a text editor (create it if it doesn't exist yet):

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Quick 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.)

Step 10: Add Suunto MCP

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.

Step 11: Test it

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!


Example conversation

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.

What data is available

CategoryWhat you can ask aboutRequires
WorkoutsAny recorded activity β€” runs, hikes, rides, swims, ski tours. Distance, time, heart rate, pace, elevation, GPS route, power.Developer API (already subscribed)
SleepSleep duration, stages (light/deep/REM), sleep score.Sleep API subscription on apizone
RecoveryHRV, recovery status, stress balance.Recovery API subscription on apizone
Daily activitySteps, 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.


Troubleshooting

Always run npm run doctor first β€” it pinpoints most problems automatically.

What you seeWhat it meansHow to fix it
Claude returns an error or nothingSomething isn't connected yetRun npm run doctor and fix any lines with βœ—
Empty workout listWatch hasn't synced recentlyOpen the Suunto app on your phone and wait for the sync to complete
"Not authenticated"The pairing step didn't finishRun npm run auth again
You logged in but nothing happenedThe browser tab closed or timed out before Suunto confirmedClose 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 apizoneGo to apizone β†’ profile β†’ OAuth application settings and confirm both values match exactly
"401" error on every requestSubscription key is wrong or incompleteGo to apizone β†’ profile β†’ Subscriptions, reveal and re-copy the Primary Key
"403 Forbidden" on workoutsDeveloper API subscription isn't activeSign in to apizone and confirm it's listed as Active
Sleep / recovery / activity returns "not found"Those need separate subscriptionsGo to apizone and subscribe to the Sleep, Recovery, or Daily Activity API
Got an SSL error after Apple sign-inKnown Suunto quirk with Apple loginClose the error tab, go back to the auth URL the terminal printed, and continue
"State mismatch" errorA second auth flow started before the first finishedClose all auth-related tabs and run npm run auth fresh
npm run build failed with an errorNode.js version too old or not installedRun node --version β€” it must be 20 or higher. Reinstall from nodejs.org
Terminal says "EADDRINUSE" or port in useSomething else is using port 8421Restart your computer, or run lsof -i :8421 to see what's using it

FAQ

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.


Privacy

  • All data flows directly between your computer and Suunto's servers. No third-party servers, no analytics.
  • Your login credentials are stored locally at ~/.suunto-mcp/tokens.json β€” not uploaded anywhere.
  • Suunto shows your connected app as "suunto-mcp" in apizone β†’ profile β†’ Authorized applications. You can revoke it there at any time.
  • The AI only sees data it explicitly requests for your question β€” not your entire history at once.

Disconnecting

To fully remove access:

  1. Log in to apizone.suunto.com β†’ profile β†’ Authorized applications β†’ remove suunto-mcp. Suunto immediately stops honoring the connection.
  2. Delete local credentials:
    rm -f ~/.suunto-mcp/tokens.json
    
  3. Remove the "suunto" block from your Claude config and restart Claude.

Pairs well with health-skill

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.


Advanced

Using with Claude Code instead of Claude Desktop

Edit ~/.claude/mcp_config.json and add the same "suunto" block from Step 10. Then run claude mcp list to verify it's loaded.

CLI β€” query your data from the terminal

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.

Webhooks β€” get notified the moment a workout syncs
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.

Keychain β€” store credentials more securely

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
All available tools (reference)

Claude picks the right tool automatically β€” you don't need to know these. For the curious:

Workouts

ToolWhat it does
list_workoutsRecent workouts, filter by date or sport
get_workoutFull summary for one workout
get_workout_samplesTime-series: HR, pace, altitude, power, GPS per second
get_workout_fitRaw FIT file decoded to structured data
export_workout_gpxGPX route export for maps, Strava, route planning

24/7 health (requires individual product subscriptions on apizone)

ToolWhat it does
get_daily_activity / list_daily_activitySteps, calories, daily heart rate
get_sleep / list_sleepSleep stages, duration, score
get_recovery / list_recoveryRecovery score, HRV, stress balance
get_daily_activity_statisticsAggregated daily stats over a date range

Credits

License

MIT β€” use it, fork it, improve it.

Related MCP Servers

G
Garmin Local Mcp

🐍 🏠 🍎 πŸͺŸ 🐧 - Local-first Garmin data warehouse: incremental sync into SQLite you own, with server-side trends, lag-aware correlations, personal baselines, and anomaly detection returned as compact tables. Analysis keeps working offline when Garmin's API breaks, and a zero-auth FIT-bundle import fills gaps with no login at all.

πŸƒ Sports0 views
C
Claudinho

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Live scores, fixtures, standings, and read-only prediction-market signals for the 2026 World Cup. No API keys.

πŸƒ Sports0 views
S
Sportscore Mcp

πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - Live scores, standings, top scorers, player stats, and knockout brackets for football, basketball, cricket, and tennis. Free public API, no key required.

πŸƒ Sports0 views
C
Chessceo Mcp

πŸ“‡ ☁️ 🏠 🍎 πŸͺŸ 🐧 - Chess data via chess.ceo β€” 11.7M+ games and 1.5M FIDE player profiles. 8 tools: player search, per-player opening preparation (opening tree with frequency + win rate), position statistics from the full game database, head-to-head records, and live tournament broadcasts. No API key. Remote server at https://mcp.chess.ceo/mcp or local via npx -y @chessceo/mcp.

πŸƒ Sports0 views
β˜… Featured

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

View ServerFeature your own server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.