Mobus vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Mobus by mobus-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 24 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDatabaseSearch | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
Mobus · Summary
MCP server for searching, previewing, and analyzing datasets across 20+ platforms.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Mobus · Use cases
- Search for datasets across multiple platforms using specific criteria like licenses or formats
- Preview and evaluate datasets before downloading them
- Generate citations in various formats for academic papers
- Trace citation graphs and research lineages
- Compare multiple datasets side by side
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
Mobus · Install
Installation
Claude Desktop
Add Mobus to Claude in under a minute:
- Open claude.ai (or Claude Desktop/Mobile)
- Go to Settings → Connectors
- Click Add custom connector
- Name it 'Mobus' and paste this URL:
https://mcp.mobus.ai/mcp - Start a new chat and try searching for datasets
Local Installation
git clone https://github.com/hrantvirabyan/Mobus.git
cd Mobus
npm install
cp .env.example .env # fill in any keys you have (all optional)
npm run buildClaude Desktop JSON Configuration
{
"mcpServers": {
"mobus": {
"command": "node",
"args": ["/absolute/path/to/Mobus/dist/main.js"]
}
}
}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