MCP Catalogs
Home

izan.io vs everything

Side-by-side comparison to help you pick between these two MCP servers.

izan.io
by ekingunoncu
everything
by modelcontextprotocol
Stars★ 29★ 85,748
30d uses
Score4177
Official
Categories
Browser AutomationWeb ScrapingDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

izan.io · Summary

Chrome extension that turns any browser into an MCP server for AI automation.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

izan.io · Use cases

  • Automate web data extraction for research and analysis
  • Create AI agents that can interact with web applications
  • Build custom browser automation tools without programming knowledge

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

izan.io · Install

  1. Install the Chrome Extension from the Chrome Web Store.
  2. Add to your MCP client config:
{
  "mcpServers": {
    "izan": {
      "command": "npx",
      "args": ["izan-mcp"]
    }
  }
}
  1. The extension connects automatically with built-in tools ready to use.

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.