bear-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
bear-mcp by autonomee | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 0 | ★ 149 |
| 30d uses | — | — |
| Score | 34 | 85 |
| Official | — | — |
| Categories | ProductivityFile SystemKnowledge Graph | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
bear-mcp · Summary
Bear Notes MCP server enables AI to search, read, create, and browse Bear notes directly through their local SQLite database.
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.
bear-mcp · Use cases
- Search and retrieve specific notes from your Bear knowledge base using AI assistants
- Create new notes through AI interactions while maintaining existing tagging structure
- Browse and analyze notes by tags, including nested tag relationships
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
bear-mcp · Install
Installation
- Clone and setup:
git clone https://github.com/autonomee/bear-mcp.git
cd bear-mcp
bun install- Configure Claude Code:
Add to your Claude Code MCP settings (~/.claude.json or project settings):
{
"mcpServers": {
"bear-notes": {
"command": "bun",
"args": ["run", "/path/to/bear-mcp/src/index.ts"]
}
}
}- For HTTP mode:
export BEAR_MCP_API_KEY="your-secret-key"
bun run start:httpultimate_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