elysia-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
elysia-mcp by kerlos | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
elysia-mcp · Summary
A TypeScript plugin for ElysiaJS to implement MCP servers with HTTP transport and session management.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
elysia-mcp · Use cases
- Building MCP servers for ElysiaJS applications with HTTP API endpoints
- Creating modular MCP plugins for different capabilities (math, text processing, etc.)
- Implementing stateful or stateless MCP servers with authentication
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
elysia-mcp · Install
# Install with bun
bun add elysia-mcp
# Install with npm
npm install elysia-mcpClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"elysia-mcp": {
"command": "node",
"args": ["path/to/your/server.js"]
}
}
}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-everything