furi vs everything
Side-by-side comparison to help you pick between these two MCP servers.
furi by ashwwwin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 88 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 8 mo ago | this month |
furi · Summary
A comprehensive CLI & API tool for managing MCP servers with process management, HTTP routing, and SSE aggregation capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
furi · Use cases
- Managing multiple MCP servers in production environments with process monitoring and logging
- Providing HTTP API access to MCP tools for integration with web applications
- Aggregating multiple MCP servers into a single endpoint for clients that support SSE transport
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
furi · Install
Installation
On macOS/Linux:
curl -fsSL https://furi.so/install | bashVerify installation:
furiConfiguration for Claude Desktop
Add to your Claude Desktop config.json:
{
"mcpServers": {
"furi": {
"command": "furi",
"args": ["connect"]
}
}
}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