npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mart1/garmin-connect-mcp-client

v0.3.10

Published

MCP Server client for Garmin Connect API

Readme

Garmin Connect MCP Client

MCP Server client that consumes the Garmin Connect HTTP API.

Installation

npm install -g @mart1/garmin-connect-mcp-client

Or use with npx:

npx @mart1/garmin-connect-mcp-client

Configuration

Set environment variables:

export GARMIN_EMAIL="[email protected]"
export GARMIN_PASSWORD="your_password"

Usage with Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "garmin-connect": {
      "command": "npx",
      "args": ["-y", "@mart1/garmin-connect-mcp-client"],
      "env": {
        "GARMIN_EMAIL": "[email protected]",
        "GARMIN_PASSWORD": "your_password"
      }
    }
  }
}

Available Tools (25 tools)

Workout Tools (4 tools)

  • upload_workout - Upload a workout to Garmin Connect
    • Parameters: workout_json (required), auto_clean (optional, default: true)
  • get_workouts - Get list of workouts
    • Parameters: start (optional, default: 0), limit (optional, default: 10)
  • get_workout_by_id - Get a workout by ID
    • Parameters: workout_id (required)
  • prepare_workout - Prepare a workout for upload by cleaning it
    • Parameters: workout_json (required)

Activity Tools (6 tools)

  • get_activities - Get list of activities
    • Parameters: start (optional, default: 0), limit (optional, default: 20), activitytype (optional)
  • get_last_activity - Get the most recent activity
    • Parameters: none
  • get_activities_by_date - Get activities within a date range
    • Parameters: startdate (required, YYYY-MM-DD), enddate (required, YYYY-MM-DD), activitytype (optional), sortorder (optional: "asc" or "desc")
  • get_activity - Get a specific activity by ID
    • Parameters: activity_id (required)
  • get_activity_details - Get comprehensive activity details with GPS track
    • Parameters: activity_id (required), maxchart (optional, default: 2000), maxpoly (optional, default: 4000)
  • get_activities_fordate - Get activities for a specific date
    • Parameters: date (required, YYYY-MM-DD)

Health Data Tools (11 tools)

  • get_daily_summary - Get daily health and activity summary
    • Parameters: date (optional, YYYY-MM-DD)
  • get_heart_rate_data - Get heart rate data
    • Parameters: date (required, YYYY-MM-DD)
  • get_sleep_data - Get sleep data
    • Parameters: date (required, YYYY-MM-DD)
  • get_stress_data - Get stress data
    • Parameters: date (required, YYYY-MM-DD)
  • get_body_battery - Get body battery energy levels
    • Parameters: startdate (required, YYYY-MM-DD), enddate (optional, YYYY-MM-DD)
  • get_resting_heart_rate - Get resting heart rate
    • Parameters: date (required, YYYY-MM-DD)
  • get_hrv_data - Get HRV (Heart Rate Variability) data
    • Parameters: date (required, YYYY-MM-DD)
  • get_training_readiness - Get training readiness score
    • Parameters: date (required, YYYY-MM-DD)
  • get_steps_data - Get steps data
    • Parameters: date (required, YYYY-MM-DD)
  • get_respiration_data - Get respiration data
    • Parameters: date (required, YYYY-MM-DD)
  • get_spo2_data - Get SpO2 (blood oxygen saturation) data
    • Parameters: date (required, YYYY-MM-DD)

Performance Metrics Tools (4 tools)

  • get_max_metrics - Get VO2 Max and Fitness Age
    • Parameters: date (required, YYYY-MM-DD)
  • get_training_status - Get training status and load
    • Parameters: date (required, YYYY-MM-DD)
  • get_endurance_score - Get endurance score
    • Parameters: startdate (required, YYYY-MM-DD), enddate (optional, YYYY-MM-DD)
  • get_race_predictions - Get race time predictions
    • Parameters: startdate (optional), enddate (optional), prediction_type (optional: "latest" or "daily")