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 | — | — |
| Score | 61 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsWeb ScrapingProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this 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
- Install Python 3.11 or later
- Clone the repository:
``bash git clone https://github.com/assafelovic/gpt-researcher.git cd gpt-researcher ``
- Set up API keys in .env file:
``bash export OPENAI_API_KEY={Your OpenAI API Key} export TAVILY_API_KEY={Your Tavily API Key} ``
- Install dependencies:
``bash pip install -r requirements.txt ``
- 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