everything vs whoop-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | whoop-mcp by shashankswe2020-ux | |
|---|---|---|
| Stars | ★ 85,748 | ★ 70 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | healthfitnessAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
whoop-mcp · Summary
MCP server connecting AI assistants to WHOOP health and fitness data through OAuth2 authentication with 6 data tools.
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
whoop-mcp · Use cases
- Ask AI questions about your weekly recovery scores and sleep quality
- Get workout summaries and performance metrics through natural conversation
- Track physiological cycles and body measurements over time
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-everythingwhoop-mcp · Install
Installation
Via MCP Registry:
Server name: io.github.shashankswe2020-ux/whoopVia Claude Desktop: Add this to your Claude Desktop configuration:
{
"mcpServers": {
"whoop": {
"command": "npx",
"args": ["whoop-ai-mcp"],
"env": {
"WHOOP_CLIENT_ID": "your_client_id",
"WHOOP_CLIENT_SECRET": "your_client_secret"
}
}
}
}Global installation:
npm install -g whoop-ai-mcp