hevy-mcp-server
Enables AI assistants to interact with the Hevy fitness tracking API, allowing users to log workouts, manage routines, browse exercises, and track fitness progress through natural language.
README
Hevy Fitness MCP Server
A Model Context Protocol (MCP) server that provides AI assistants with access to the Hevy fitness tracking API. This allows you to log workouts, manage routines, browse exercises, and track your fitness progress directly through AI chat interfaces.
🏋️ Features
This MCP server provides comprehensive access to Hevy's fitness tracking capabilities:
Workouts
get_workouts- Browse your workout history (paginated)get_workout- Get detailed information about a specific workoutcreate_workout- Log a new workout with exercises, sets, weights, and repsupdate_workout- Update an existing workoutget_workouts_count- Get total number of workouts loggedget_workout_events- Get workout change events (updates/deletes) since a date for syncing
Routines
get_routines- List your workout routinesget_routine- Get details of a specific routinecreate_routine- Create a new workout routine templateupdate_routine- Update an existing routine
Exercises
get_exercise_templates- Browse available exercises (includes both Hevy's library and your custom exercises)search_exercise_templates- Find exercises by name, e.g. "bench press" (catalogue cached for 24h)get_exercise_template- Get detailed information about a specific exercise templatecreate_exercise_template- Create a custom exercise templateget_exercise_history- View your performance history for a specific exercise
Organization
get_routine_folders- List your routine folders for organizationget_routine_folder- Get details of a specific routine foldercreate_routine_folder- Create a new routine folder
🚀 Quick Start
Prerequisites
- Hevy Pro subscription - The Hevy API is only available to Pro users
- Hevy API Key - Get yours at https://hevy.com/settings?developer
- A GitHub OAuth App - Used to sign in to the server
- Docker host - Anything that can run a container (Coolify, Fly, a VPS)
Deploy with Docker
- Clone this repository:
git clone https://github.com/adamdavies1915/hevy-mcp-server.git
cd hevy-mcp-server
-
Create a GitHub OAuth App at https://github.com/settings/developers with:
- Homepage URL:
https://your-domain - Authorization callback URL:
https://your-domain/callback
- Homepage URL:
-
Configure the environment (see
.env.examplefor the full list):
cp .env.example .env
openssl rand -hex 32 # use this for COOKIE_ENCRYPTION_KEY
- Build and run:
docker build -t hevy-mcp-server .
docker run -p 3000:3000 --env-file .env -v hevy-data:/data hevy-mcp-server
Put a TLS-terminating reverse proxy in front of it, and your MCP server is
available at https://your-domain/mcp.
Persistence: OAuth sessions and encrypted API keys live in a SQLite
database at KV_PATH (default /data/hevy-mcp.db). Mount /data on a volume
or every redeploy will sign you out.
Deploy on Coolify
A Coolify service template lives in
coolify/hevy-mcp-server.yaml. Paste it into a
Docker Compose Empty resource and Coolify handles the domain, TLS, the
generated encryption key and the persistent volume. See
coolify/README.md for the setup order — the GitHub OAuth
App needs the domain Coolify assigns, so it is a deploy-then-configure flow.
API keys: per-user or shared
Two ways to supply the Hevy API key:
- Per-user (default) - Each user signs in with GitHub, then visits
/setupto store their own key. Keys are encrypted withCOOKIE_ENCRYPTION_KEY. - Single-user - Set
HEVY_API_KEYin the environment and it is used for any signed-in user who has not stored one of their own. This requiresALLOWED_GITHUB_USERS, since otherwise anyone with a GitHub account could sign in and use your Hevy account. The server refuses to start without it.
Local Development
npm install
cp .env.example .env # fill in the GitHub OAuth credentials
npm run dev
The server will be available at http://localhost:3000/mcp.
Run the test suite and type checks with:
npm test
npm run type-check
🔌 Connect to AI Clients
Claude on the web
- Go to Settings > Connectors > Add custom connector
- Enter your server URL:
https://your-domain/mcp - Click Connect and sign in with GitHub when prompted
The server implements OAuth 2.1 with dynamic client registration, so Claude handles the authorization flow itself.
Claude Desktop
Add the remote server to your config file (Settings > Developer > Edit Config):
{
"mcpServers": {
"hevy": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-domain/mcp"
]
}
}
}
Restart Claude Desktop and you'll see the Hevy tools available.
Other MCP clients
The server speaks streamable HTTP at /mcp. The deprecated SSE transport is
not supported; /sse returns 410.
📖 Usage Examples
Creating a Workout
Once connected, you can ask your AI assistant to log workouts:
"Log a workout from today at 10am to 11am. I did bench press: 3 sets of 100kg for 10 reps, and squats: 4 sets of 120kg for 8 reps."
The assistant will:
- Use
search_exercise_templatesto find the exercise IDs - Call
create_workoutwith the proper structure - Confirm the workout was logged successfully
Viewing Progress
"Show me my last 5 workouts"
"What's my exercise history for deadlifts?"
"Get all workout changes since January 1st, 2024"
The assistant will use get_workout_events to sync recent changes.
Managing Routines
"Create a new Push Day routine with bench press (4 sets of 8-12 reps at 100kg) and overhead press (3 sets of 10 reps at 60kg)"
The assistant will use the repRange field for exercises with rep ranges like "8-12 reps".
"Update my Upper Body routine to add pull-ups"
The assistant will use update_routine to modify existing routines.
Creating Custom Exercises
"Create a custom exercise called 'Tom's Special Cable Flyes' for chest using the cable machine"
The assistant will use create_exercise_template with the appropriate muscle groups and equipment category.
Organizing Routines
"Create a new folder called 'Summer 2024 Programs'"
The assistant will use create_routine_folder to organize your routines.
🔧 API Details
Workout Structure
When creating workouts, you can specify:
title- Name of the workout (required)startTime- When the workout started (required, ISO 8601 format)endTime- When the workout ended (required, ISO 8601 format)routineId- Optional routine ID this workout belongs todescription- Optional workout descriptionisPrivate- Whether the workout is private (optional, default: false)exercises- Array of exercises, each with:title- Exercise name from the template (required)exerciseTemplateId- Get this fromget_exercise_templates(required)supersetId- Optional superset ID (null if not in a superset)notes- Optional notes for this exercisesets- Array of set data with:type- "warmup", "normal", "failure", or "dropset" (optional)weightKg- Weight in kilograms (optional)reps- Number of repetitions (optional)distanceMeters- For cardio exercises (optional)durationSeconds- For timed exercises (optional)customMetric- Custom metric for steps/floors (optional)rpe- Rating of Perceived Exertion, 6-10 (optional)
Note: The index field for exercises and sets is automatically generated based on their position in the array.
Routine Structure
When creating routines, you can specify:
title- Name of the routine (required)folderId- Optional folder ID (null for default "My Routines" folder)notes- Optional notes for the routineexercises- Array of exercises, each with:exerciseTemplateId- Get this fromget_exercise_templates(required)supersetId- Optional superset ID (null if not in a superset)restSeconds- Rest time in seconds between sets (optional)notes- Optional notes for this exercisesets- Array of set data with:type- "warmup", "normal", "failure", or "dropset" (optional)weightKg- Weight in kilograms (optional)reps- Number of repetitions (optional)repRange- Rep range object withstartandend(optional, e.g., 8-12 reps)distanceMeters- For cardio exercises (optional)durationSeconds- For timed exercises (optional)customMetric- Custom metric for steps/floors (optional)
Important: Unlike workouts, routines do NOT use index or title fields in exercises/sets. These are generated by the API.
Time Format
All timestamps use ISO 8601 format:
2024-10-15T10:00:00Z
📚 Resources
- Hevy API Documentation - Official API docs
- MCP Documentation - Learn about Model Context Protocol
- Hevy App - The Hevy fitness tracking app
🛠️ Development
Project Structure
hevy-mcp-server/
├── src/
│ ├── server.ts # Node entrypoint: builds bindings, starts HTTP server
│ ├── app.ts # Hono app and route mounting
│ ├── env.ts # Runtime bindings and the sign-in allowlist
│ ├── mcp-server.ts # MCP tool definitions
│ ├── github-handler.ts # OAuth 2.1 endpoints and the /setup page
│ ├── middleware/
│ │ └── auth.ts # Bearer token authentication
│ ├── routes/
│ │ ├── mcp.ts # Streamable HTTP transport and session handling
│ │ └── utility.ts # Health check, stats, home page
│ └── lib/
│ ├── client.ts # Hevy API client wrapper
│ ├── kv.ts # SQLite-backed key/value store
│ └── key-storage.ts# Encrypted API key storage
├── Dockerfile
├── api.json # OpenAPI specification for Hevy API
└── package.json
Adding New Tools
To add new Hevy API capabilities:
- Add the API method to
src/lib/client.ts - Register the tool in
src/mcp-server.tsinsidecreateHevyMcpServer() - Use Zod for input validation
- Handle errors gracefully
Example:
server.tool(
"tool_name",
{
param: z.string().describe("Parameter description"),
},
async ({ param }) => {
try {
const result = await client.someMethod(param);
return {
content: [{
type: "text",
text: JSON.stringify(result, null, 2)
}]
};
} catch (error) {
return handleError(error);
}
}
);
🤝 Contributing
Contributions are welcome!
How to Contribute
- Fork the repository and create your branch from
main - Make your changes - add features, fix bugs, or improve documentation
- Test your changes - run
npm testandnpm run type-check - Follow the code style - run
npm run formatandnpm run lint:fix - Submit a Pull Request with a clear description of your changes
Development Setup
# Clone your fork
git clone https://github.com/tomtorggler/hevy-mcp-server.git
cd hevy-mcp-server
# Install dependencies
npm install
# Copy environment variables template
cp .dev.vars.example .dev.vars
# Add your Hevy API key to .dev.vars
# Start development server
npm start
# Run tests
npm test
Areas for Contribution
- Add more Hevy API endpoints
- Improve error handling and validation
- Add more comprehensive tests
- Improve documentation and examples
- Report bugs or suggest features via Issues
📝 License
Unlicense - see LICENSE file for details.
This project is not affiliated with Hevy. Hevy is a trademark of Hevy Studios Inc.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。