Gym Coach MCP Server

Gym Coach MCP Server

Connects to a Gym Tracker Supabase database to provide LLMs with access to personal workout history, routines, and training progress. It enables users to analyze fitness performance, track personal records, and receive personalized coaching advice through natural language.

Category
Visit Server

README

Gym Coach MCP Server

MCP server that turns any compatible LLM into a personal gym coach with access to your real workout data from Gym Tracker.

Built on the Model Context Protocol — works with Claude Desktop, Claude Code, Cursor, Continue, Cline, and any MCP-compatible client.

What it does

The server connects to your Gym Tracker Supabase database and exposes your training data through 5 tools and 1 resource:

Tools

Tool Description Parameters
get_workout_history Recent workouts with exercises, weights, and reps limit, from_date, to_date
get_exercise_progress Progression history for a specific exercise (max weight, volume, trends) exercise_name, limit
get_routines All routines with exercises, sets, reps, and muscle groups
get_training_plan Active training plan with progress and completion percentage
get_stats_summary KPIs: total workouts, frequency, top exercises, PRs period_days

Resources

Resource Description
gym://exercise-catalog Complete exercise catalog with muscle groups and equipment

Example prompts

  • "How's my bench press progress looking?"
  • "Am I training enough leg volume compared to upper body?"
  • "Give me a summary of my last month"
  • "Am I on track with my training plan?"
  • "When was my last PR on squats?"
  • "Suggest improvements to my push routine"

Setup

1. Install dependencies

cd gym-tracker-mcp
npm install

2. Configure environment

Copy .env.example to .env and fill in your credentials:

cp .env.example .env
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=eyJ...
GYM_EMAIL=your@email.com
GYM_PASSWORD=your-password

Uses your existing Gym Tracker account credentials. All queries go through Supabase RLS — you can only access your own data.

3. Build

npm run build

4. Connect to your LLM client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "gym-coach": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/gym-tracker-mcp/dist/index.js"]
    }
  }
}

Claude Code

Add to .mcp.json in your project root or ~/.claude.json globally:

{
  "mcpServers": {
    "gym-coach": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/gym-tracker-mcp/dist/index.js"]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "gym-coach": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/gym-tracker-mcp/dist/index.js"]
    }
  }
}

Continue (VS Code / JetBrains)

Add to ~/.continue/config.json:

{
  "mcpServers": [
    {
      "name": "gym-coach",
      "command": "node",
      "args": ["/absolute/path/to/gym-tracker-mcp/dist/index.js"]
    }
  ]
}

Replace /absolute/path/to/ with the actual path to your gym-tracker-mcp directory.

Development

npm run dev    # Watch mode with tsx (hot reload)
npm run build  # Compile TypeScript to dist/
npm start      # Run compiled server

Architecture

gym-tracker-mcp/
├── src/
│   └── index.ts      # MCP server (~450 lines)
├── dist/              # Compiled JS (after npm run build)
├── .env               # Your credentials (not committed)
├── .env.example       # Template
├── package.json
└── tsconfig.json
  • Transport: STDIO (maximum client compatibility)
  • Auth: supabase.auth.signInWithPassword() with user's email/password
  • Security: Uses anon key + RLS — each user can only access their own data
  • Database: Reads directly from Gym Tracker's Supabase tables (workouts, routines, exercise_catalog, training_plans)

Tech stack

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured