jetski vs everything
Side-by-side comparison to help you pick between these two MCP servers.
jetski by hyprmcp | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 209 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | MonitoringSecurityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
jetski · Summary
An MCP analytics and authentication platform with zero code changes that provides OAuth2.1, real-time logs, and client onboarding.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jetski · Use cases
- Monitoring and analyzing MCP server usage patterns across different clients
- Implementing OAuth2.1 authentication for MCP servers without code changes
- Generating client-specific setup instructions to reduce onboarding friction
- Debugging MCP server issues with real-time logs and analytics
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
jetski · Install
Installation
Quick Start with Cloud
Get started with the fully managed HyprMCP Cloud at [https://app.hyprmcp.com](https://app.hyprmcp.com/).
Local Development
- Clone the repository:
git clone https://github.com/hyprmcp/jetski.git
cd jetski- Install dependencies:
mise trust
mise install
pnpm i
cp .dex.secret.env.example .dex.secret.env
docker compose up -d- Add host file entry:
echo -e "\n127.0.0.1 host.minikube.internal\n" | sudo tee -a /etc/hosts- Start the platform:
Terminal 1 - Backend:
mise run serveTerminal 2 - Frontend:
pnpm run startGenerate demo data:
mise run generateAccess at http://localhost:4200 with credentials: admin@example.com / password
Claude Desktop Configuration
To use with Claude Desktop, configure the following in your claude_desktop_config.json:
{
"mcpServers": {
"hyprmcp": {
"command": "npx",
"args": ["@hyprmcp/mcp-gateway"],
"env": {
"HYPRMCP_SERVER_URL": "https://your-server.com",
"HYPRMCP_CLIENT_ID": "your-client-id"
}
}
}
}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