everything vs Matryoshka
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | Matryoshka by yogthos | |
|---|---|---|
| Stars | ★ 85,748 | ★ 134 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Matryoshka · Summary
MCP server for analyzing documents larger than context windows using recursive language models and symbolic commands.
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
Matryoshka · Use cases
- Analyzing large log files or error reports beyond context limits
- Processing and querying multi-document collections without chunking
- Building memory-aware agents that reference large context efficiently
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-everythingMatryoshka · Install
Install from npm:
pnpm add -g matryoshka-rlmOr run without installing:
npx matryoshka-rlm "How many ERROR entries are there?" ./server.logFor Claude Desktop integration, create claude_desktop_config.json with:
{
"mcpServers": {
"matryoshka": {
"command": "npx",
"args": ["matryoshka-rlm", "mcp"]
}
}
}