hevy-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
hevy-mcp by chrisdoc | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 230 | ★ 149 |
| 30d uses | — | — |
| Score | 51 | 85 |
| Official | — | — |
| Categories | ProductivityAI / LLM Toolshealth-fitness | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
hevy-mcp · Summary
MCP server for Hevy fitness app enabling AI to manage workouts, routines, and exercise templates.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server