MCP Catalogs
Home

ultimate_mcp_server vs kept

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
kept
by egroup-labs
Stars★ 149★ 83
30d uses
Score8548
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
File SystemKnowledge GraphProductivity
LanguagePythonTypeScript
Last commit2 mo agothis month

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.

kept · Summary

Kept is an MCP server that manages AI conversations as searchable Markdown files in a local vault.

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

kept · Use cases

  • Search and reuse past AI conversations within coding workflows
  • Maintain a personal knowledge graph of AI interactions
  • Archive and organize research notes from AI assistants

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

kept · Install

Installation

Desktop App

Quick install:

# macOS/Linux
curl -fsSL https://kept.work/install.sh | bash

# Windows PowerShell
irm https://github.com/egroup-labs/kept/releases/latest/download/install.ps1 | iex

MCP Server

# macOS/Linux
bash <(curl -fsSL https://raw.githubusercontent.com/egroup-labs/kept/main/scripts/install-kept-mcp.sh)

# Windows PowerShell
& ([scriptblock]::Create((irm https://raw.githubusercontent.com/egroup-labs/kept/main/scripts/install-kept-mcp.ps1)))

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "kept-vault": {
      "command": "npx",
      "args": ["@kept-plugins/kept-vault"]
    }
  }
}

Set KEPT_VAULT_PATH environment variable if your vault is not at ~/.kept/vault.

Comparison generated from public README + GitHub signals. Last updated automatically.