MCP Catalogs
Home

cortex-scout vs ultimate_mcp_server

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

cortex-scout
by cortex-works
ultimate_mcp_server
by Dicklesworthstone
Stars★ 65★ 149
30d uses
Score4685
Official
Categories
Browser AutomationWeb ScrapingAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageRustPython
Last commit1 mo ago2 mo ago

cortex-scout · Summary

Unified web extraction and stateful automation engine for AI agents with MCP integration.

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.

cortex-scout · Use cases

  • AI agents requiring token-efficient web retrieval with anti-bot handling
  • Automated testing workflows replacing heavy frameworks like Playwright
  • Research systems needing deep multi-hop search and 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

cortex-scout · Install

Installation

Option A — Prebuilt binaries

Download the latest release assets from GitHub Releases:

  • cortex-scout-mcp — MCP stdio server (recommended for VS Code/Cursor/Claude Desktop)
  • cortex-scout — optional HTTP server

Option B — Build from source

Install protoc first, then:

git clone https://github.com/cortex-works/cortex-scout.git
cd cortex-scout
cargo build --release --manifest-path mcp-server/Cargo.toml --bin cortex-scout-mcp

Claude Desktop Integration

Add to your Claude Desktop config:

{
  "mcpServers": {
    "cortex-scout": {
      "command": "env",
      "args": [
        "RUST_LOG=warn",
        "CORTEX_SCOUT_TOOL_TIMEOUT_SECS=90",
        "/path/to/cortex-scout-mcp"
      ]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.