MCP Cheat Engine Server — provides safe, structured read-only access to memory analysis and debugging functionality through the Model Context Protocol (MCP). For developers, security researchers, and game modders.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cheat-engine-server-python": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
If you find this useful, please ⭐ star the repo — it helps others discover it!
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security / entertainment
MCP Security Weekly
Get CVE alerts and security updates for Cheat Engine Server Python and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
If you find this useful, please ⭐ star the repo — it helps others discover it!
The MCP Cheat Engine Server provides safe, structured access to memory analysis and debugging functionality through the Model Context Protocol (MCP). This tool is designed for:
This server operates in READ-ONLY mode for safety. It can read and analyze memory but cannot modify it. All operations are logged for security auditing.
pip install -r requirements.txtpython server/main.pylist_processes tool to see available programsattach_to_process with a process IDread_memory_region to examine memorydetach_from_process when done📖 For detailed Claude Desktop setup instructions, see MCP_SETUP.md
Quick configuration summary:
%APPDATA%\Claude\claude_desktop_config.json (Windows){
"mcpServers": {
"cheat-engine": {
"command": "python",
"args": ["path\\to\\server\\main.py", "--debug", "--read-only"],
"cwd": "path\\to\\cheat-engine-server-python"
}
}
}
# Clone or download the project
cd C:\your-desired-location
# Extract files if downloaded as ZIP
# Navigate to project directory
cd cheat-engine-server-python
# Verify Python version
python --version
# Install required packages
pip install -r requirements.txt
# Verify installation
python -c "import mcp, trio, psutil, capstone; print('All dependencies installed successfully!')"
# Test the server
python server/main.py --test
# You should see: "MCP Cheat Engine Server initialized successfully"
The server uses configuration files in the server/config/ directory:
settings.json (Auto-created on first run){
... [View full README on GitHub](https://github.com/bethington/cheat-engine-server-python#readme)