everything vs wasmcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | wasmcp by wasmcp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 79 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Rust |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
wasmcp · Summary
A WebAssembly Component SDK for building composable MCP servers with Rust, Python and TypeScript 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
wasmcp · Use cases
- Building modular MCP servers with isolated functionality in different languages
- Creating distributed AI tool systems where each component handles specific domain tasks
- Developing secure, containerized MCP services with limited attack surfaces
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-everythingwasmcp · Install
Installation
# Install using the installer script
curl -fsSL https://raw.githubusercontent.com/wasmcp/wasmcp/main/install.sh | bash
# Or install from source
cargo install --git https://github.com/wasmcp/wasmcpRequirements
wasmtime,wash,spin, or another component-capable runtime
Integration with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"wasmcp": {
"command": "wasmtime",
"args": ["serve", "-Scli", "-Skeyvalue", "-Shttp", "path/to/your/server.wasm"]
}
}
}