everything vs zeromcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | zeromcp by mrexodia | |
|---|---|---|
| Stars | ★ 85,748 | ★ 77 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
zeromcp · Summary
Zero-dependency Python MCP server implementation with type-safe tool definitions and multiple transport options.
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
zeromcp · Use cases
- Embedding MCP capabilities in Python applications with minimal overhead
- Creating custom MCP servers without complex dependency chains
- Developing type-safe tool interfaces for AI model interactions
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-everythingzeromcp · Install
pip install zeromcpOr with uv:
uv add zeromcpConfigure in Claude Desktop:
{
"mcpServers": {
"zeromcp-server": {
"command": "python",
"args": ["path/to/your/server.py"]
}
}
}For HTTP transport:
{
"mcpServers": {
"zeromcp-server": {
"type": "http",
"url": "http://127.0.0.1:8000/mcp"
}
}
}