MCP Catalogs
Home

cheat-engine-server-python vs sequentialthinking

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

cheat-engine-server-python
by bethington
sequentialthinking
by modelcontextprotocol
Stars★ 49★ 85,748
30d uses
Score4475
Official
Categories
Developer ToolsSecurityOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit4 mo agothis month

cheat-engine-server-python · Summary

MCP Cheat Engine Server provides safe read-only memory access for debugging and analysis.

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

cheat-engine-server-python · Use cases

  • Debugging applications by examining memory contents without modifying them
  • Security research through safe memory analysis of target processes
  • Game modding and understanding game mechanics via memory inspection
  • Educational purposes for learning about computer memory and reverse engineering

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

cheat-engine-server-python · Install

Installation

Prerequisites
  • Windows 10/11 (64-bit recommended)
  • Python 3.9 or higher
  • Administrator privileges (for memory access)
  • Claude Desktop or compatible MCP client
Steps
  1. Clone or download the project to your computer
  2. Open PowerShell as Administrator
  3. Navigate to the server directory
  4. Install dependencies: pip install -r requirements.txt
  5. Test the server: python server/main.py --test
  6. Start the server: python server/main.py
Claude Desktop Configuration

Add to your Claude Desktop config file (%APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "cheat-engine": {
      "command": "python",
      "args": ["path\\to\\server\\main.py", "--debug", "--read-only"],
      "cwd": "path\\to\\cheat-engine-server-python"
    }
  }
}

Restart Claude Desktop after adding the configuration.

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: Use one of the installation buttons or manually configure with:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.