turbomcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
turbomcp by Epistates | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
turbomcp · Summary
Production-ready Rust SDK for MCP with zero-boilerplate macros, modular transport architecture, and WASM support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
turbomcp · Use cases
- Building Claude Desktop servers with custom tools and resources
- Creating high-performance MCP servers for cloud deployments
- Developing embedded MCP applications with no_std support
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
turbomcp · Install
Installation
Add to Cargo.toml:
[dependencies]
turbomcp = "3.1.3"
tokio = { version = "1", features = ["full"] }Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"calculator": {
"command": "/path/to/your/server",
"args": []
}
}
}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