cheat-engine-server-python vs time
Side-by-side comparison to help you pick between these two MCP servers.
cheat-engine-server-python by bethington | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 49 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityOther | ProductivityDeveloper ToolsCommunication |
| 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.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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.
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}