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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | CommunicationKnowledge GraphAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this 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
- Clone the repository:
git clone https://github.com/beever-ai/beever-atlas.git
cd beever-atlas- Try the demo (optional):
make demo- Get API keys:
GOOGLE_API_KEYfor Gemini extraction and answersJINA_API_KEYfor embeddings (Jina v4)
- Install with one line:
./atlasThis 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