ultimate_mcp_server vs ClaudeHistoryMCP
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | ClaudeHistoryMCP by jhammant | |
|---|---|---|
| Stars | ★ 149 | ★ 65 |
| 30d uses | — | — |
| Score | 85 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsSearch |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 3 mo ago |
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.
ClaudeHistoryMCP · Summary
MCP server for searching Claude Code conversation history with hybrid BM25 + TF-IDF search and knowledge extraction.
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
ClaudeHistoryMCP · Use cases
- Debugging recurring issues by searching past solutions to similar problems
- Retrieving project decisions and context when starting new sessions
- Discovering patterns in development workflows across multiple projects
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_serverClaudeHistoryMCP · Install
Installation
- Clone and build the server:
git clone https://github.com/jhammant/ClaudeHistoryMCP.git
cd ClaudeHistoryMCP
npm install
npm run build- Build the search index:
npm run build-index- Register the MCP server with Claude:
claude mcp add claude-history -- node "/path/to/ClaudeHistoryMCP/dist/index.js"- Install the session-start hook (optional):
npm run install-hook- Add to your global CLAUDE.md (recommended):
## Claude History MCP
When the `claude-history` MCP is available, use it proactively:
- **Session start**: Use `get_project_context` to check for prior decisions, patterns, and recent session summaries
- **Debugging**: Use `find_solutions` to search history for past fixes before starting from scratch