everything vs skalex
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | skalex by TarekRaafat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
skalex · Summary
Zero-dependency JavaScript database with built-in vector search, agent memory, and MCP server functionality.
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
skalex · Use cases
- AI agent memory and knowledge base
- Local-first vector database for semantic search
- MCP server integration with Claude Desktop and Cursor
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-everythingskalex · Install
npm install skalex@alphaTo use as MCP server with Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"skalex": {
"command": "npx",
"args": ["skalex", "mcp"]
}
}
}