everything vs CoexistAI
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | CoexistAI by SPThole | |
|---|---|---|
| Stars | ★ 85,748 | ★ 481 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | Jupyter Notebook |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
CoexistAI · Summary
Modular research assistant framework with MCP server integration for web search, YouTube, Reddit, mapping, and GitHub exploration.
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
CoexistAI · Use cases
- Academic research with automated literature review
- Content creation from multiple web sources
- Code analysis for developers
- Market research via social media platforms
- Location-based information gathering
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-everythingCoexistAI · Install
Installation
**Method 1: Docker (Recommended)** Follow instructions in [README.docker.md](README.docker.md) for containerized setup.
**Method 2: Local Setup**
- Clone the repository:
git clone https://github.com/SPThole/CoexistAI.git coexistai && cd coexistai - Configure model settings in
config/model_config.json - Run setup script:
- macOS/Linux zsh: zsh quick_setup.sh - Linux bash: bash quick_setup.sh
**MCP Configuration for Claude Desktop** Add to Claude Desktop config.json:
{
"mcpServers": {
"coexistai": {
"command": "python",
"args": ["-m", "coexistai.app"]
}
}
}