WorkoutGuide
FreeNot checkedEnables workout tracking and coaching within Claude conversations, managing exercise configs, logs, streaks, and health metrics via an MCP server with PostgreSQ
About
Enables workout tracking and coaching within Claude conversations, managing exercise configs, logs, streaks, and health metrics via an MCP server with PostgreSQL.
README
A guided workout companion that lives entirely inside conversations with Claude. No app, no screen mid-workout — Claude is the coach, this MCP server is the memory (exercise config, per-attempt logs, streaks, health metrics from Apple Health / Whoop / manual entry).
Design truth: SPEC.md · State truth: HANDOFF.md · Coaching personality: skills/workout-coach.md
Layout
apps/mcp-server/ MCP server (Express + StreamableHTTP), Drizzle + Postgres
packages/shared/ zod schemas — source of truth for tool inputs & payloads
skills/ workout-coach.md coaching skill
Local dev
pnpm install
cp .env.example .env # fill in real values (openssl rand -hex 32 for secrets)
pnpm db:migrate # applies apps/mcp-server/drizzle/*.sql
pnpm dev # tsx watch
pnpm test # vitest: merge/streak units + full e2e vs in-process Postgres
Production (Replit)
- Repl:
Claude-Workout-Guide— deploys from this repo via GitHub sync (repo is the source of truth, never edit on Replit directly). - Add the built-in PostgreSQL database to the Repl (provides
DATABASE_URL). - Replit Secrets (no
.envin prod):MCP_AUTH_TOKEN,MCP_PATH_SECRET(bothopenssl rand -hex 32), optionallyPORT(default 3000),LOG_LEVEL. .replitbuilds with pnpm, runs migrations, and starts the server on a reserved VM (always-on, required for an MCP endpoint).
Connecting Claude
| Client | URL | Auth |
|---|---|---|
| claude.ai web / iOS connector | https://<repl-domain>/api/mcp/<MCP_PATH_SECRET> |
secret path (layer 1) |
| Claude Code / API clients | https://<repl-domain>/api/mcp |
Authorization: Bearer <MCP_AUTH_TOKEN> (layer 2) |
Both /api/mcp/… and bare /mcp/… mounts are served. Health check: GET /api/healthz (or /healthz). Rotate either secret in Replit Secrets → redeploy →
update the connector URL. Worst case: rotate, wipe DB, import_backup.
Schema notes (differences from SPEC §4)
exercise_logs.rest_started_at— added socheck_timecan measure an in-flight rest against the server clock.exercises.retired_at— exercises with logged history are retired (hidden, history preserved) instead of hard-deleted; template switches use this too.- Backups carry a
looseLogsarray for attempts logged outside any session. - v0.6 adds
ideas,plans,planned_sessions(SPEC §5c): training plans with a computed-status calendar, adherence scoring, and mid-run idea capture. 45 tools total. Client-facing usage lives in docs/claude-project-guide.md.
Installing WorkoutGuide
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/amerhhh/Claude-Workout-GuideFAQ
Is WorkoutGuide MCP free?
Yes, WorkoutGuide MCP is free — one-click install via Unyly at no cost.
Does WorkoutGuide need an API key?
No, WorkoutGuide runs without API keys or environment variables.
Is WorkoutGuide hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install WorkoutGuide in Claude Desktop, Claude Code or Cursor?
Open WorkoutGuide on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare WorkoutGuide with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
