beever-atlas vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
beever-atlas by Beever-AI | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 328 | ★ 149 |
| 30d uses | — | — |
| Score | 50 | 85 |
| Official | — | — |
| Categories | CommunicationKnowledge GraphAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | this month | 2 mo ago |
beever-atlas · Summary
Beever Atlas is an MCP server that transforms team chats into a self-maintaining wiki with integrated search and QA capabilities.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"]
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server