MCP Catalogs
Home

gpt-researcher vs everything

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

gpt-researcher
by assafelovic
everything
by modelcontextprotocol
Stars★ 27,100★ 85,748
30d uses
Score6177
Official
Categories
AI / LLM ToolsWeb ScrapingProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

gpt-researcher · Summary

An autonomous research agent that conducts deep research using any LLM providers with MCP server integration for specialized data sources.

everything · Summary

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

gpt-researcher · Use cases

  • Market research and competitive analysis
  • Academic literature review and synthesis
  • Technical documentation and research
  • Investigation and fact-checking

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

gpt-researcher · Install

Installation

  1. Install Python 3.11 or later
  2. Clone the repository:

``bash git clone https://github.com/assafelovic/gpt-researcher.git cd gpt-researcher ``

  1. Set up API keys in .env file:

``bash export OPENAI_API_KEY={Your OpenAI API Key} export TAVILY_API_KEY={Your Tavily API Key} ``

  1. Install dependencies:

``bash pip install -r requirements.txt ``

  1. Run the server:

``bash python -m uvicorn main:app --reload ``

For MCP integration, see [gptr-mcp repository](https://github.com/assafelovic/gptr-mcp)

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.