hevy-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
hevy-mcp by chrisdoc | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 230 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM Toolshealth-fitness | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
hevy-mcp · Summary
MCP server for Hevy fitness app enabling AI to manage workouts, routines, and exercise templates.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
hevy-mcp · Use cases
- AI assistants can create personalized workout plans based on user history and preferences
- Automatically update workout logs after exercise completion through webhook subscriptions
- Search and recommend exercises based on muscle groups, equipment, or workout type
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
hevy-mcp · Install
Installation
Via npx (Recommended)
HEVY_API_KEY=sk_live... npx -y hevy-mcpManual Installation
git clone https://github.com/chrisdoc/hevy-mcp.git
cd hevy-mcp
npm install
cp .env.sample .env
# Edit .env and add your HEVY_API_KEYClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"hevy-mcp": {
"command": "npx",
"args": ["-y", "hevy-mcp"],
"env": {
"HEVY_API_KEY": "sk_live_your_key_here"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything