MCP Catalogs
Home

everything vs ReActMCP

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

everything
by modelcontextprotocol
ReActMCP
by mshojaei77
Stars★ 85,748★ 143
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
SearchAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis month14 mo ago

everything · Summary

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

ReActMCP · Summary

ReActMCP is an MCP server that integrates web search capabilities with AI assistants using the Exa API.

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

ReActMCP · Use cases

  • Enhancing AI assistants with real-time web search capabilities
  • Building research tools that need current information from the web
  • Creating custom AI applications that require up-to-date knowledge retrieval

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

ReActMCP · Install

Installation

  1. Clone the repository:
git clone https://github.com/mshojaei77/ReActMCP.git
cd ReActMCP
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up environment variables:
EXA_API_KEY=your_exa_api_key_here
OPENAI_API_KEY=...
  1. Run the server:
python servers/web_search.py

Claude Desktop Configuration

{
  "mcpServers": {
    "websearch": {
      "command": "python",
      "args": ["path/to/servers/exa_web_search.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.