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 | — | — |
| Score | 44 | 75 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this 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
- Clone or download the project to your computer
- Open PowerShell as Administrator
- Navigate to the server directory
- Install dependencies:
pip install -r requirements.txt - Test the server:
python server/main.py --test - 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"
]
}
}
}