MCP Catalogs
Home

beever-atlas vs everything

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

beever-atlas
by Beever-AI
everything
by modelcontextprotocol
Stars★ 328★ 85,748
30d uses
Score5077
Official
Categories
CommunicationKnowledge GraphAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

beever-atlas · Summary

Beever Atlas is an MCP server that transforms team chats into a self-maintaining wiki with integrated search and QA capabilities.

everything · Summary

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

beever-atlas · Use cases

  • Automatically team documentation from chat conversations
  • AI-powered search across team communications with source citations
  • Integrate team knowledge base into Claude Code and Cursor via MCP

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

beever-atlas · Install

Installation

  1. Clone the repository:
git clone https://github.com/beever-ai/beever-atlas.git
cd beever-atlas
  1. Try the demo (optional):
make demo
  1. Get API keys:
  • GOOGLE_API_KEY for Gemini extraction and answers
  • JINA_API_KEY for embeddings (Jina v4)
  1. Install with one line:
./atlas

This will walk you through setup including embedding model, LLM provider, graph backend, and MCP server configuration.

Claude Desktop Integration

Add to Claude Desktop config:

{
  "mcpServers": {
    "beever-atlas": {
      "command": "npx",
      "args": ["beever-atlas-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.