MCP Catalogs
Home

everything vs mcp-omnisearch

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

everything
by modelcontextprotocol
mcp-omnisearch
by spences10
Stars★ 85,748★ 308
30d uses
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
SearchAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

mcp-omnisearch · Summary

A MCP server providing unified access to multiple search engines and AI tools through a single interface.

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-omnisearch · Use cases

  • Unified research across multiple search engines with different strengths
  • AI-powered question answering with citations from various knowledge sources
  • Content extraction and processing for web pages, documents, and media
  • Advanced code and repository search on GitHub with sophisticated syntax

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

mcp-omnisearch · Install

{
  "mcpServers": {
    "mcp-omnisearch": {
      "command": "node",
      "args": ["/path/to/mcp-omnisearch/dist/index.js"],
      "env": {
        "TAVILY_API_KEY": "your-tavily-key",
        "KAGI_API_KEY": "your-kagi-key",
        "BRAVE_API_KEY": "your-brave-key",
        "GITHUB_API_KEY": "your-github-key",
        "EXA_API_KEY": "your-exa-key",
        "LINKUP_API_KEY": "your-linkup-key",
        "FIRECRAWL_API_KEY": "your-firecrawl-key",
        "FIRECRAWL_BASE_URL": "http://localhost:3002"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.