MCP Catalogs
Home

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
Score8548
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsDeveloper ToolsSearch
LanguagePythonTypeScript
Last commit2 mo ago3 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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

ClaudeHistoryMCP · Install

Installation

  1. Clone and build the server:
git clone https://github.com/jhammant/ClaudeHistoryMCP.git
cd ClaudeHistoryMCP
npm install
npm run build
  1. Build the search index:
npm run build-index
  1. Register the MCP server with Claude:
claude mcp add claude-history -- node "/path/to/ClaudeHistoryMCP/dist/index.js"
  1. Install the session-start hook (optional):
npm run install-hook
  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.