MCP Catalogs
Home

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
Score4477
Official
Categories
Developer ToolsOps & InfraProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit8 mo agothis 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 | bash

Verify installation:

furi

Configuration 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
Comparison generated from public README + GitHub signals. Last updated automatically.