MCP Catalogs
Home

mcp-searxng vs everything

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

mcp-searxng
by ihor-sokoliuk
everything
by modelcontextprotocol
Stars★ 786★ 85,748
30d uses
Score5477
Official
Categories
SearchAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-searxng · Summary

MCP server providing web search capabilities through SearXNG API with intelligent caching and content extraction.

everything · Summary

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

mcp-searxng · Use cases

  • AI assistants need up-to-date web search results beyond their training data
  • Content analysis of web pages with advanced filtering and extraction
  • Research workflows requiring time-filtered search results in multiple languages

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-searxng · Install

Installation

NPM (global install)

npm install -g mcp-searxng

Add to your MCP client configuration:

{
  "mcpServers": {
    "searxng": {
      "command": "mcp-searxng",
      "env": {
        "SEARXNG_URL": "YOUR_SEARXNG_INSTANCE_URL"
      }
    }
  }
}

Docker

docker pull isokoliuk/mcp-searxng:latest
{
  "mcpServers": {
    "searxng": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "SEARXNG_URL",
        "isokoliuk/mcp-searxng:latest"
      ],
      "env": {
        "SEARXNG_URL": "YOUR_SEARXNG_INSTANCE_URL"
      }
    }
  }
}

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.