sift-gateway vs everything
Side-by-side comparison to help you pick between these two MCP servers.
sift-gateway by lourencomaciel | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
sift-gateway · Summary
Sift is a reliability gateway for MCP and CLI tools that stores artifacts and returns schema-stable JSON outputs.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
sift-gateway · Use cases
- Handling large paginated API responses in MCP workflows
- Redacting sensitive data from tool outputs
- Ensuring consistent schema across different MCP server responses
- Querying stored artifacts with Python code for complex analysis
- Improving accuracy while reducing context token usage
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
sift-gateway · Install
pipx install sift-gateway
sift-gateway init --from claudeFor Claude Desktop, add to the config.json:
{
"mcpServers": {
"sift": {
"command": "sift-gateway",
"args": ["serve"],
"env": {
"PYTHONPATH": "/path/to/sift"
}
}
}
}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