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

hevy-coach

v0.1.4

Published

AI Personal Training MCP Server — turns Claude into your strength, conditioning, mobility, and longevity coach via Hevy

Downloads

516

Readme

HevyCoach

AI personal training system that connects to Hevy via MCP (Model Context Protocol). Not just another API wrapper — HevyCoach adds coaching intelligence on top of workout data.

What makes this different from existing Hevy MCP servers: Other servers give you CRUD operations. HevyCoach adds the brain — workout analysis, progression tracking with Epley 1RM estimation, training summaries, and exercise search. Combined with the CLAUDE.md coaching prompt, it turns Claude into a full athletic coach covering strength, hypertrophy, VO2max, mobility, flexibility, and longevity.

What You Get

  • Complete athletic programming — strength, hypertrophy, VO2max, mobility, flexibility, stamina, longevity
  • Coaching intelligence — workout analysis, progression tracking, automatic adaptation recommendations
  • Auto-pushed to Hevy — routines appear in your app, ready to log
  • Daily briefings — morning message with today's workout + conditioning + mobility
  • Adaptive coaching — reads your completed workouts and adjusts programming
  • Weekly reviews — volume tracking, PR highlights, conditioning adherence, program adjustments

Setup

Prerequisites

  • Hevy Pro subscription (required for API access)
  • API key from Hevy Settings → API
  • Node.js 18+
  • Claude Desktop (or any MCP-compatible client)

Quick Start (npx)

Add to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "hevy-coach": {
      "command": "npx",
      "args": ["-y", "hevy-coach"],
      "env": {
        "HEVY_API_KEY": "your-hevy-api-key"
      }
    }
  }
}

Restart Claude Desktop. The tools appear in the MCP tools list.

Install from Source

git clone https://github.com/furkantanyol/hevy-coach.git
cd hevy-coach
npm install
npm run build

Then use the local path in your MCP config:

{
  "mcpServers": {
    "hevy-coach": {
      "command": "node",
      "args": ["/absolute/path/to/hevy-coach/dist/cli.js"],
      "env": {
        "HEVY_API_KEY": "your-hevy-api-key"
      }
    }
  }
}

Add the Coaching Brain

Create a Claude Project called "HevyCoach":

  1. Open Claude Desktop → Projects → New Project
  2. Name it "HevyCoach"
  3. In Project Instructions, paste the contents of CLAUDE.md
  4. Add training-history.md as a project file

Start Training

Open the HevyCoach project and say:

"I want to start training with you. Let's do the onboarding."

Claude will ask about your body, training history, goals, and preferences. Then it generates your full program (strength + conditioning + mobility) and pushes routines to Hevy.

Daily Automation (Optional)

Create two Claude Desktop scheduled tasks:

Morning briefing (7 AM):

Read my HevyCoach program. Tell me today's workout with warmup, exercises, sets/reps/weights, conditioning if scheduled, and daily mobility drills.

Evening sync (11:59 PM):

Fetch my latest Hevy workout. Analyze it against today's plan. Summarize performance, note progressions or missed targets, and adjust upcoming sessions if needed.

Tools

User Tools

| Tool | Description | |------|-------------| | get-user-info | Get authenticated user's profile (ID, name, Hevy URL) |

Workout Tools

| Tool | Description | |------|-------------| | get-workouts | List recent workouts (paginated) | | get-workout | Get specific workout by ID | | create-workout | Create a new workout with exercises and sets | | update-workout | Update an existing workout by ID | | get-workout-count | Total logged workouts | | get-workout-events | Track changes since a date |

Routine Tools

| Tool | Description | |------|-------------| | get-routines | List saved routines | | get-routine | Get routine details | | create-routine | Push routine to Hevy | | update-routine | Modify existing routine | | get-routine-folder | Get a single routine folder by ID | | get-routine-folders | List routine folders | | create-routine-folder | Create folder |

Exercise Tools

| Tool | Description | |------|-------------| | get-exercise-templates | Browse exercise library | | get-exercise-template | Get exercise details | | get-exercise-history | Past performance data | | create-exercise-template | Create custom exercise |

Coaching Tools

| Tool | Description | |------|-------------| | analyze-workout | Compare completed vs planned workout. Returns per-exercise analysis with progression recommendations. | | get-training-summary | Aggregate last N workouts: volume, frequency, consistency, duration trends. | | get-exercise-progression | Track exercise over time: weight/rep trends, estimated 1RM (Epley), plateau detection. | | find-exercise | Search exercises by name or muscle group. Returns compact id + title pairs. | | batch-find-exercises | Look up multiple exercises at once. Loads library once, returns map of query → match. Use this when creating routines. |

Architecture

hevy-coach/
├── src/
│   ├── index.ts           # Server factory
│   ├── cli.ts             # CLI entry point (stdio transport)
│   ├── tools/
│   │   ├── users.ts       # User profile
│   │   ├── workouts.ts    # Workout CRUD
│   │   ├── routines.ts    # Routine CRUD
│   │   ├── exercises.ts   # Exercise templates
│   │   └── coaching.ts    # Coaching intelligence (the differentiator)
│   └── utils/
│       ├── hevy-client.ts # Hevy API client
│       └── response.ts    # MCP response helpers
├── CLAUDE.md              # Coaching brain + user profile + program
├── training-history.md    # Long-term tracking template
└── package.json

Development

npm run build    # Compile TypeScript
npm run dev      # Watch mode

Credits

Inspired by chrisdoc/hevy-mcp and tomtorggler/hevy-mcp-server. Built from scratch with coaching intelligence as the core focus.

License

MIT — Furkan Tanyol