everything vs easy-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | easy-mcp by zcaceres | |
|---|---|---|
| Stars | ★ 85,748 | ★ 194 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 16 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
easy-mcp · Summary
A TypeScript framework for creating MCP servers with simple Express-like API and experimental decorators.
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
easy-mcp · Use cases
- Creating custom MCP servers with TypeScript tools and resources
- Building AI assistants with custom capabilities through decorator API
- Rapid prototyping of MCP servers with minimal boilerplate
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-everythingeasy-mcp · Install
bun install easy-mcpFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"easy-mcp": {
"command": "npx",
"args": ["easy-mcp"]
}
}
}