MCP Catalogs
Home

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
Score4377
Official
Categories
AI / LLM ToolsDatabaseSearch
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis 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:

  1. Open claude.ai (or Claude Desktop/Mobile)
  2. Go to Settings → Connectors
  3. Click Add custom connector
  4. Name it 'Mobus' and paste this URL: https://mcp.mobus.ai/mcp
  5. 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 build

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.